From: borutr Date: Thu, 25 Dec 2008 21:41:01 +0000 (+0000) Subject: * support/regression/Makefile.in: X-Git-Url: https://git.gag.com/?p=fw%2Fsdcc;a=commitdiff_plain;h=a9fac239e06ffa5aebdf9590931b65cf5e0ca11a * support/regression/Makefile.in: add -I$(INC_DIR) to SDCCFLAGS only if INC_DIR is defined git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@5298 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index ea6e7a5f..5cd3afa5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-12-25 Borut Razem + + * support/regression/Makefile.in: + add -I$(INC_DIR) to SDCCFLAGS only if INC_DIR is defined + 2008-12-25 Philipp Klaus Krause * src/z80/peeph-z80.def: minor peephole improvements @@ -5,7 +10,7 @@ 2008-12-21 Borut Razem * support/librarian/sdcclib.c: fixed build failure on Mac OS X - due to redifinition of symbol __assert + due to redefinition of symbol __assert sdcclib.c:53:1:warning: "__assert" redefined /Xcode2.5/SDKs/MacOSX10.4u.sdk/usr/include/assert.h:80:1: warning: this is the location of the previous definition diff --git a/support/regression/Makefile.in b/support/regression/Makefile.in index 92cbf37a..c9cb851a 100644 --- a/support/regression/Makefile.in +++ b/support/regression/Makefile.in @@ -177,9 +177,9 @@ endif make_library: $(MAKE_LIBRARY) SDCCFLAGS += -I$(srcdir)/fwk/include -I$(srcdir)/tests -#ifdef INC_DIR -SDCCFLAGS += -I$(INC_DIR) -#endif +ifdef INC_DIR + SDCCFLAGS += -I$(INC_DIR) +endif # List of intermediate files to keep. Pretty much keep everything as # disk space is free.