mirror of
https://github.com/jakcron/nstool
synced 2024-11-14 01:36:41 +00:00
Update makefile files to allow paths with spaces.
This commit is contained in:
parent
f09c17ed51
commit
859849332b
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