mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
Merge pull request #49 from jakcron/master
Merge changes into nstool-1.0 branch.
This commit is contained in:
commit
8bb759292d
8 changed files with 8 additions and 8 deletions
|
@ -33,7 +33,7 @@ else
|
|||
endif
|
||||
|
||||
# Output
|
||||
OUTPUT = $(shell basename $(CURDIR)).a
|
||||
OUTPUT = $(shell basename "$(CURDIR)").a
|
||||
|
||||
main: build
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ else
|
|||
endif
|
||||
|
||||
# Output
|
||||
OUTPUT = $(shell basename $(CURDIR)).a
|
||||
OUTPUT = $(shell basename "$(CURDIR)").a
|
||||
|
||||
main: build
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ else
|
|||
endif
|
||||
|
||||
# Output
|
||||
OUTPUT = $(shell basename $(CURDIR)).a
|
||||
OUTPUT = $(shell basename "$(CURDIR)").a
|
||||
|
||||
main: build
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ else
|
|||
endif
|
||||
|
||||
# Output
|
||||
OUTPUT = $(shell basename $(CURDIR)).a
|
||||
OUTPUT = $(shell basename "$(CURDIR)").a
|
||||
|
||||
main: build
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ else
|
|||
endif
|
||||
|
||||
# Output
|
||||
OUTPUT = $(shell basename $(CURDIR)).a
|
||||
OUTPUT = $(shell basename "$(CURDIR)").a
|
||||
|
||||
main: build
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ else
|
|||
endif
|
||||
|
||||
# Output
|
||||
OUTPUT = $(shell basename $(CURDIR)).a
|
||||
OUTPUT = $(shell basename "$(CURDIR)").a
|
||||
|
||||
main: build
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ else
|
|||
endif
|
||||
|
||||
# Output
|
||||
OUTPUT = $(shell basename $(CURDIR)).a
|
||||
OUTPUT = $(shell basename "$(CURDIR)").a
|
||||
|
||||
main: build
|
||||
|
||||
|
|
2
makefile
2
makefile
|
@ -1,4 +1,4 @@
|
|||
PROJECT_DIR = $(CURDIR)
|
||||
PROJECT_DIR = "$(CURDIR)"
|
||||
LIB_DIR = $(PROJECT_DIR)/lib
|
||||
PROGRAM_DIR = $(PROJECT_DIR)/programs
|
||||
BIN_DIR = $(PROJECT_DIR)/bin
|
||||
|
|
Loading…
Reference in a new issue