aboutsummaryrefslogtreecommitdiff
path: root/makefile.after
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2009-09-18 14:54:14 +0000
committermarha <marha@users.sourceforge.net>2009-09-18 14:54:14 +0000
commit4d5664922a121914cddc705cfb8b0ba2daeb3b1c (patch)
tree4de6b10b4ef819954a15dd0cb4e68b5930f3902e /makefile.after
parent58b69e7eb9be29c60e45d46a880b391e3809e76f (diff)
downloadvcxsrv-4d5664922a121914cddc705cfb8b0ba2daeb3b1c.tar.gz
vcxsrv-4d5664922a121914cddc705cfb8b0ba2daeb3b1c.tar.bz2
vcxsrv-4d5664922a121914cddc705cfb8b0ba2daeb3b1c.zip
Now it is possible to have spaces in the root directory name of the source tree
(when using mhmake version 1.4.0)
Diffstat (limited to 'makefile.after')
-rw-r--r--makefile.after6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile.after b/makefile.after
index 5324decca..600343e3e 100644
--- a/makefile.after
+++ b/makefile.after
@@ -48,9 +48,9 @@ $(EXE) : $(OBJS) $(INCLUDELIBFILES) $(RESOBJS) $(MANIFESTFILE)
endif # End WINAPP or TTYAPP stuff
ifeq ($(DEBUG),1)
-COMMONCFLAGS += $(DEFINES:%=-D%) $(INCLUDES:%=-I"%") -Fo"$(relpath $@)" -Fd"$(PDB)" "$<"
+COMMONCFLAGS += $(DEFINES:%=-D%) $(INCLUDES:%=-I%) -Fo$(relpath $@) -Fd"$(PDB)" $<
else
-COMMONCFLAGS += $(DEFINES:%=-D%) $(INCLUDES:%=-I"%") -Fo"$(relpath $@)" "$<"
+COMMONCFLAGS += $(DEFINES:%=-D%) $(INCLUDES:%=-I%) -Fo$(relpath $@) $<
PDB= # There is no PDB file generated in a release build
endif
@@ -76,7 +76,7 @@ $(OBJDIR)\%$(OBJEXT) : %.cc
$(CC) $(CCFLAGS) /EHsc $(COMMONCFLAGS)
$(OBJDIR)\%.res : %.rc
- $(RC) $(RCFLAGS) $(RCDEFINES:%=-d "%") $(RCINCLUDES:%=-i "%") -Fo"$(relpath $@)" "$<"
+ $(RC) $(RCFLAGS) $(RCDEFINES:%=-d "%") $(RCINCLUDES:%=-i %) -Fo$(relpath $@) $<
ifdef INC_BDF_RULES
load_makefile $(MHMAKECONF)\bdftopcf\makefile MAKESERVER=0 DEBUG=$(DEBUG)