Update makefile files to allow paths with spaces.

This commit is contained in:
jakcron 2018-09-25 16:59:28 +08:00
parent f09c17ed51
commit 859849332b
8 changed files with 8 additions and 8 deletions

View file

@ -33,7 +33,7 @@ else
endif
# Output
OUTPUT = $(shell basename $(CURDIR)).a
OUTPUT = $(shell basename "$(CURDIR)").a
main: build

View file

@ -33,7 +33,7 @@ else
endif
# Output
OUTPUT = $(shell basename $(CURDIR)).a
OUTPUT = $(shell basename "$(CURDIR)").a
main: build

View file

@ -33,7 +33,7 @@ else
endif
# Output
OUTPUT = $(shell basename $(CURDIR)).a
OUTPUT = $(shell basename "$(CURDIR)").a
main: build

View file

@ -33,7 +33,7 @@ else
endif
# Output
OUTPUT = $(shell basename $(CURDIR)).a
OUTPUT = $(shell basename "$(CURDIR)").a
main: build

View file

@ -32,7 +32,7 @@ else
endif
# Output
OUTPUT = $(shell basename $(CURDIR)).a
OUTPUT = $(shell basename "$(CURDIR)").a
main: build

View file

@ -32,7 +32,7 @@ else
endif
# Output
OUTPUT = $(shell basename $(CURDIR)).a
OUTPUT = $(shell basename "$(CURDIR)").a
main: build

View file

@ -32,7 +32,7 @@ else
endif
# Output
OUTPUT = $(shell basename $(CURDIR)).a
OUTPUT = $(shell basename "$(CURDIR)").a
main: build

View file

@ -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