From 53a098b1e0c14c7180ee47bf1dba32c7f5828226 Mon Sep 17 00:00:00 2001 From: tecodev Date: Wed, 10 Aug 2005 11:32:44 +0000 Subject: [PATCH] * device/lib/Makefile.in: fixed copying pic16 libraries (broken by my last commit) git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3839 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- ChangeLog | 5 +++++ device/lib/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3f29f0ff..bb05705e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-08-10 Raphael Neider + + * device/lib/Makefile.in: fixed copying pic16 libraries (broken by + my last commit) + 2005-08-10 Raphael Neider * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis diff --git a/device/lib/Makefile.in b/device/lib/Makefile.in index f935e987..3539dc77 100644 --- a/device/lib/Makefile.in +++ b/device/lib/Makefile.in @@ -258,7 +258,7 @@ port-specific-objects-pic16: if [ -d $(PORT) ]; then \ mkdir -p $(PORT)/bin; \ $(MAKE) -C $(PORT); \ - cp -f $(PORT)/bin/* $(PORTDIR); \ + cp -f $(PORT)/bin/*.o $(PORT)/bin/*.lib $(PORTDIR); \ fi lib-files: -- 2.47.2