aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 751af92..b544a27 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,10 @@
APP_NAME := Base\ Windowed\ Application
+NBSP := $(shell perl -C -e 'print chr 0xfeff')
+APP_NAME_NOSPACE := $(subst \ ,$(NBSP),$(APP_NAME))
+testnospace:
+ echo $(APP_NAME_NOSPACE)
+
SOURCES := $(shell find src -name '*.m')
OBJECTS := $(SOURCES:%.m=%.o)