From: vrokas Date: Sat, 5 Jun 2004 16:19:00 +0000 (+0000) Subject: * device/lib/pic16/startup/Makefile: added $(MODELFLAGS) X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=b8c076fb0b337d24ca1ccaa96004b445dc632204;p=fw%2Fsdcc * device/lib/pic16/startup/Makefile: added $(MODELFLAGS) in COMPILE_FLAGS. Thanks to G. Gallant for report. git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3348 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 41ab509c..07a21e3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-06-05 Vangelis Rokas + + * device/lib/pic16/startup/Makefile: added $(MODELFLAGS) + in COMPILE_FLAGS. Thanks to G. Gallant for report. + 2004-06-05 Frieder Ferlemann * doc/sdccman.lyx: minor changes, mentioned beta vendor support diff --git a/device/lib/pic16/startup/Makefile b/device/lib/pic16/startup/Makefile index 0e1f4c91..1c2f2eb8 100644 --- a/device/lib/pic16/startup/Makefile +++ b/device/lib/pic16/startup/Makefile @@ -22,7 +22,7 @@ SRCS = crt0 \ # add nostdinc and nostdlib for this device libraries -COMPILE_FLAGS += --nostdinc --nostdlib +COMPILE_FLAGS += $(MODELFLAGS) --nostdinc --nostdlib CFILES = $(patsubst %,%.c,$(SRCS)) OFILES = $(patsubst %.c,%.o,$(CFILES))