From 344553f6c8b36ab814dd921a5be6642a8babdf66 Mon Sep 17 00:00:00 2001 From: bernhardheld Date: Fri, 28 Apr 2006 20:25:03 +0000 Subject: [PATCH] * configure, * configure.in: replaced duplicate message about ucsim by missing sdcpp * install-sh: fix bug #1204398 by setting umask 0022 * device/lib/Makefile.in: separate build of z80 and gbz80 lib git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4135 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- ChangeLog | 8 ++++++++ device/lib/ds390/Makefile.in | 2 +- device/lib/ds400/Makefile.in | 2 +- device/lib/gbz80/Makefile.in | 4 ++-- device/lib/z80/Makefile.in | 4 ++-- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index e290b94c..d3ddd870 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-04-28 Bernhard Held + + * device/lib/gbz80/Makefile.in, + * device/lib/z80/Makefile.in, + * device/lib/ds390/Makefile.in, + * device/lib/ds400/Makefile.in: added srcdir to include search path, + thanks to Borut for the bug report + 2006-04-28 Raphael Neider * src/pic/{gen.c,main.h,pcode.c}, diff --git a/device/lib/ds390/Makefile.in b/device/lib/ds390/Makefile.in index e5ab78ca..d09dcaaf 100755 --- a/device/lib/ds390/Makefile.in +++ b/device/lib/ds390/Makefile.in @@ -9,7 +9,7 @@ OBJECTS = tinibios.rel memcpyx.rel lcd390.rel i2c390.rel rtc390.rel SOURCES = $(patsubst %.rel,%.c,$(OBJECTS)) -CPPFLAGS = -I../../include +CPPFLAGS = -I$(srcdir)/../../include CFLAGS = -mds390 $(CPPFLAGS) $(VERBOSE) all: $(OBJECTS) libds390.lib diff --git a/device/lib/ds400/Makefile.in b/device/lib/ds400/Makefile.in index c1e3752c..d4dd1dc4 100755 --- a/device/lib/ds400/Makefile.in +++ b/device/lib/ds400/Makefile.in @@ -9,7 +9,7 @@ OBJECTS = tinibios.rel memcpyx.rel ds400rom.rel SOURCES = $(patsubst %.rel,%.c,$(OBJECTS)) -CPPFLAGS = -I../../include +CPPFLAGS = -I$(srcdir)/../../include CFLAGS = -mds400 $(CPPFLAGS) $(VERBOSE) all: $(OBJECTS) libds400.lib diff --git a/device/lib/gbz80/Makefile.in b/device/lib/gbz80/Makefile.in index 39d65de3..04433cd4 100644 --- a/device/lib/gbz80/Makefile.in +++ b/device/lib/gbz80/Makefile.in @@ -13,7 +13,7 @@ OBJ = div.o mul.o putchar.o printf.o shift.o stubs.o crt0_rle.o heap.o fstubs.o LIB = gbz80.lib CC = $(SCC) AS = $(SAS) -CFLAGS = -I../../include -I. +CFLAGS = -I$(srcdir)/../../include -I. all: $(LIB) crt0.o @@ -30,4 +30,4 @@ clean: rm -f *.o *.sym *.lst *~ $(CLEANSPEC) *.dump* *.asm *.lib distclean: clean - rm -f Makefile \ No newline at end of file + rm -f Makefile diff --git a/device/lib/z80/Makefile.in b/device/lib/z80/Makefile.in index fe7304a0..39976cf4 100644 --- a/device/lib/z80/Makefile.in +++ b/device/lib/z80/Makefile.in @@ -15,7 +15,7 @@ CC = $(SCC) AS = $(SAS) ASFLAGS = -plosgff -CFLAGS = -I../../include -I. +CFLAGS = -I$(srcdir)/../../include -I. all: $(LIB) crt0.o @@ -35,4 +35,4 @@ clean: rm -f *.o *.sym *.lst *~ $(CLEANSPEC) *.dump* *.asm *.lib distclean: clean - rm -f Makefile \ No newline at end of file + rm -f Makefile -- 2.30.2