From: tecodev Date: Tue, 3 Mar 2009 09:46:14 +0000 (+0000) Subject: * device/lib/pic/libdev/Makefile.in: build device-specific X-Git-Url: https://git.gag.com/?p=fw%2Fsdcc;a=commitdiff_plain;h=1bb6a9b476754a7dd750c60972bbefe75c218f68 * device/lib/pic/libdev/Makefile.in: build device-specific libraries for the correct processor, fixes #2654585 git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@5405 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 3349c673..00b0be65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-03-03 Raphael Neider + + * device/lib/pic/libdev/Makefile.in: build device-specific + libraries for the correct processor, fixes #2654585 + 2009-03-01 Raphael Neider * device/lib/Makefile.in: fixed parallel builds (i.e., make -jN, N>1) diff --git a/device/lib/pic/libdev/Makefile.in b/device/lib/pic/libdev/Makefile.in index 6545b098..dfb2d27b 100644 --- a/device/lib/pic/libdev/Makefile.in +++ b/device/lib/pic/libdev/Makefile.in @@ -30,7 +30,7 @@ pic%.o : pic%.c ifndef SILENT @echo "[ CC ] ==> $(patsubst $(top_builddir)/%,%,$@)" endif - @-$(CC) $(CPPFLAGS) $(CFLAGS) -mpic14 -p$* -o "$@" -c "$<" + @-$(CC) -mpic14 -p$* $(CPPFLAGS) $(CFLAGS) -o "$@" -c "$<" $(INSTALL_DIR)/%.lib : %.o @-$(LIB) -c "$@" "$<";