From: sdcc-builder Date: Wed, 7 Jan 2004 09:30:41 +0000 (+0000) Subject: * device/include/Makefile.in: fix install X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=00b554d5087d574b05c2cd034b4e9e0211c7e481;p=fw%2Fsdcc * device/include/Makefile.in: fix install git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3093 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 545a081c..141b2433 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-01-07 Bernhard Held + + * device/include/Makefile.in: fix install + 2004-01-07 Erik Petrich * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted diff --git a/device/include/Makefile.in b/device/include/Makefile.in index bdae4465..ec5408fa 100644 --- a/device/include/Makefile.in +++ b/device/include/Makefile.in @@ -37,10 +37,11 @@ CPPFLAGS = @CPPFLAGS@ -I$(PRJDIR) # ------------------------------------------ all: -# Compiling and installing everything and runing test -# --------------------------------------------------- +# Compiling and installing everything and running test +# ---------------------------------------------------- install: all installdirs - $(CP) asm/*/features.h *.h $(sdcc_includedir) + $(CP) -r asm *.h $(sdcc_includedir) + find $(sdcc_includedir) -type d -name 'CVS' -exec rm {} \; # Deleting all the installed files