From f71c36581264c929bfa30598b4bb68b282f0176b Mon Sep 17 00:00:00 2001 From: johanknol Date: Wed, 23 Aug 2000 17:36:26 +0000 Subject: [PATCH] didn't checked the make (un)install, had some quarks even though git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@338 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- device/lib/Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/device/lib/Makefile.in b/device/lib/Makefile.in index d73ff859..a57d3071 100644 --- a/device/lib/Makefile.in +++ b/device/lib/Makefile.in @@ -89,15 +89,15 @@ install: installdirs $(CP) $$model/*.asm $(datadir)/lib/$$model/; \ $(CP) $$model/*.cdb $(datadir)/lib/$$model/; \ done - $(MAKE) modelDS390 - $(CP) ds390/*.lib ds390/*.rel ds390/*.asm ds390/*.cbd $(datadir)/lib/ds390 + $(CP) ds390/*.lib ds390/*.rel ds390/*.asm ds390/*.cdb $(datadir)/lib/ds390 # Deleting all the installed files # -------------------------------- uninstall: - for hdr in *.h; do rm -f $(datadir)/$$hdr; done - for model i $(MODELS); do \ + for hdr in ../include/*.h; do rm -f $(datadir)/include/$$hdr; done + for cfl in *.c; do rm -f $(datadir)/lib/$$cfl; done + for model in $(MODELS); do \ rm -rf $(datadir)/lib/$$model; \ done rm -rf $(datadir)/lib/ds390 -- 2.47.2