* sim/ucsim/gui.src/serio.src/Makefile.in, sim/ucsim/s51.src/Makefile.in, sim/ucsim...
authorsdcc-builder <sdcc-builder@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 25 Aug 2005 19:25:47 +0000 (19:25 +0000)
committersdcc-builder <sdcc-builder@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 25 Aug 2005 19:25:47 +0000 (19:25 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3878 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
sim/ucsim/avr.src/Makefile.in
sim/ucsim/gui.src/serio.src/Makefile.in
sim/ucsim/hc08.src/Makefile.in
sim/ucsim/s51.src/Makefile.in
sim/ucsim/xa.src/Makefile.in
sim/ucsim/z80.src/Makefile.in

index e5d46f807b90f42d26a8d2e012393084b227aaf5..ccecb0a3904c7b1445dd420c061430837ead018c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-08-25 Borut Razem <borut.razem AT siol.net>
+
+       * sim/ucsim/gui.src/serio.src/Makefile.in,
+         sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
+         sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
+         sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
+         install and strip, since the strip at /usr/ccs/bin should be used
+         on solaris
+
 2005-08-24 Borut Razem <borut.razem AT siol.net>
 
        * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
index 3e93afdecfa32c93e1f518413e4dafe15e5f890d..f2e1ed16bd2a4abebbc10c1b2a05511568a8c990 100644 (file)
@@ -12,6 +12,7 @@ CPP           = @CPP@
 CXXCPP         = @CXXCPP@
 RANLIB         = @RANLIB@
 INSTALL                = @INSTALL@
+STRIP          = @STRIP@
 
 PRJDIR         = ..
 
@@ -64,7 +65,8 @@ all: checkconf otherlibs avr.src
 # Compiling and installing everything and runing test
 # ---------------------------------------------------
 install: all installdirs
-       $(INSTALL) -s savr$(EXEEXT) $(DESTDIR)$(bindir)
+       $(INSTALL) savr$(EXEEXT) $(DESTDIR)$(bindir)/savr$(EXEEXT)
+       $(STRIP) $(DESTDIR)$(bindir)/savr$(EXEEXT)
 
 
 # Deleting all the installed files
index adfab22fb3eeea8767b7d3c8f7ae755177ef6d24..44363c8ed3be4667211af87224c3fe36680634ce 100644 (file)
@@ -4,6 +4,7 @@ SHELL           = /bin/sh
 CXX            = @CXX@
 CXXCPP         = @CXXCPP@
 INSTALL                = @INSTALL@
+STRIP          = @STRIP@
 CP             = /bin/cp
 
 PRJDIR         = ../..
@@ -50,7 +51,8 @@ endif
 # Compiling and installing everything and runing test
 # ---------------------------------------------------
 install: all installdirs
-       $(INSTALL) -s serialview$(EXEEXT) $(DESTDIR)$(bindir)
+       $(INSTALL) serialview$(EXEEXT) $(DESTDIR)$(bindir)/serialview$(EXEEXT)
+       $(STRIP) $(DESTDIR)$(bindir)/serialview$(EXEEXT)
 
 
 # Deleting all the installed files
index 289da44d11ec4a8c114a6567b440edded38b7de2..b1effd0b2f8fc63435acf948ec9225733741f56f 100644 (file)
@@ -12,6 +12,7 @@ CPP           = @CPP@
 CXXCPP         = @CXXCPP@
 RANLIB         = @RANLIB@
 INSTALL                = @INSTALL@
+STRIP          = @STRIP@
 
 PRJDIR         = ..
 
@@ -66,7 +67,8 @@ tests: $(TEST_OBJ)
 # Compiling and installing everything and runing test
 # ---------------------------------------------------
 install: all installdirs
-       $(INSTALL) -s shc08$(EXEEXT) $(DESTDIR)$(bindir)
+       $(INSTALL) shc08$(EXEEXT) $(DESTDIR)$(bindir)/shc08$(EXEEXT)
+       $(STRIP) $(DESTDIR)$(bindir)/shc08$(EXEEXT)
 
 
 # Deleting all the installed files
index 621ec875b5494a785f9215eece95f0ce46313c2f..8a5b2e4722004c8fe66675ba693aaa3609031732 100644 (file)
@@ -68,7 +68,8 @@ all: checkconf otherlibs s51.src
 # Compiling and installing everything and runing test
 # ---------------------------------------------------
 install: all installdirs
-       $(INSTALL) -s s51$(EXEEXT) $(DESTDIR)$(bindir)
+       $(INSTALL) s51$(EXEEXT) $(DESTDIR)$(bindir)/s51$(EXEEXT)
+       $(STRIP) $(DESTDIR)$(bindir)/s51$(EXEEXT)
 
 
 # Deleting all the installed files
index f1af695e06fc4201a2f408186af56b7b0eefbe36..a437fc8508d5558201d66de7e865a7a6339c8663 100644 (file)
@@ -12,6 +12,7 @@ CPP           = @CPP@
 CXXCPP         = @CXXCPP@
 RANLIB         = @RANLIB@
 INSTALL                = @INSTALL@
+STRIP          = @STRIP@
 
 PRJDIR         = ..
 
@@ -57,7 +58,8 @@ tests: $(TEST_OBJ)
 # Compiling and installing everything and runing test
 # ---------------------------------------------------
 install: all installdirs
-       $(INSTALL) -s sxa$(EXEEXT) $(DESTDIR)$(bindir)
+       $(INSTALL) sxa$(EXEEXT) $(DESTDIR)$(bindir)/sxa$(EXEEXT)
+       $(STRIP) $(DESTDIR)$(bindir)/sxa$(EXEEXT)
 
 
 # Deleting all the installed files
index 5fae4c591254b8dd17b8442117d830a83bb002fd..fac494d761af457569aa62307632151b56c741c0 100644 (file)
@@ -12,6 +12,7 @@ CPP           = @CPP@
 CXXCPP         = @CXXCPP@
 RANLIB         = @RANLIB@
 INSTALL                = @INSTALL@
+STRIP          = @STRIP@
 
 PRJDIR         = ..
 
@@ -71,7 +72,8 @@ tests: $(TEST_OBJ)
 # Compiling and installing everything and runing test
 # ---------------------------------------------------
 install: all installdirs
-       $(INSTALL) -s sz80$(EXEEXT) $(DESTDIR)$(bindir)
+       $(INSTALL) sz80$(EXEEXT) $(DESTDIR)$(bindir)/sz80$(EXEEXT)
+       $(STRIP) $(DESTDIR)$(bindir)/sz80$(EXEEXT)
 
 
 # Deleting all the installed files