From d6a1ccea222308222f01f13233652c49829c7bfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 24 Apr 2000 13:37:07 +0000 Subject: [PATCH] added APPEXTRADEFS to .cpp, .c rules (makes tex2rtf compile with wxBase) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7257 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/makeprog.env.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/makeprog.env.in b/src/makeprog.env.in index 8e64d3f9db..9ee384b814 100644 --- a/src/makeprog.env.in +++ b/src/makeprog.env.in @@ -10,13 +10,13 @@ RES_PROGRAM = $(PROGRAM)_resources.o RES_PROGRAM_OPT = @RESPROGRAM@ .c.o : - $(CCC) -c $(CFLAGS) -o $@ $< + $(CCC) -c $(CFLAGS) $(APPEXTRADEFS) -o $@ $< .cpp.o : - $(CC) -c $(CPPFLAGS) -o $@ $< + $(CC) -c $(CPPFLAGS) $(APPEXTRADEFS) -o $@ $< .cxx.o : - $(CC) -c $(CPPFLAGS) -o $@ $< + $(CC) -c $(CPPFLAGS) $(APPEXTRADEFS) -o $@ $< # the comment at the end of the next line is needed because otherwise autoconf # would remove this line completely - it contains a built-in hack to remove