* device/lib/pic/libdev/Makefile.in: build device-specific
authortecodev <tecodev@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 3 Mar 2009 09:46:14 +0000 (09:46 +0000)
committertecodev <tecodev@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 3 Mar 2009 09:46:14 +0000 (09:46 +0000)
  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

ChangeLog
device/lib/pic/libdev/Makefile.in

index 3349c6730cceedf27e5c2fc87ad6793618638bbb..00b0be6549f2038815122213602d31e53f162478 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-03-03 Raphael Neider <rneider AT web.de>
+
+       * device/lib/pic/libdev/Makefile.in: build device-specific
+         libraries for the correct processor, fixes #2654585
+
 2009-03-01 Raphael Neider <rneider AT web.de>
 
        * device/lib/Makefile.in: fixed parallel builds (i.e., make -jN, N>1)
 2009-03-01 Raphael Neider <rneider AT web.de>
 
        * device/lib/Makefile.in: fixed parallel builds (i.e., make -jN, N>1)
index 6545b098e3ce78dd6fb787ae1c8ff15e793a0d94..dfb2d27b9fab28c2a4151b232624e30025d2f36e 100644 (file)
@@ -30,7 +30,7 @@ pic%.o : pic%.c
 ifndef SILENT
        @echo "[  CC   ] ==> $(patsubst $(top_builddir)/%,%,$@)"
 endif
 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 "$@" "$<";
 
 $(INSTALL_DIR)/%.lib : %.o
        @-$(LIB) -c "$@" "$<";