* support/cpp2/Makefile.in (install): Added creation of dest dir.
authormichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 27 Oct 2001 01:45:41 +0000 (01:45 +0000)
committermichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 27 Oct 2001 01:45:41 +0000 (01:45 +0000)
* support/makebin/Makefile (install): Added creation of dest dir.

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1450 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
support/cpp2/Makefile.in
support/makebin/Makefile

index 10e8921e2e7e8e4d3378c7f6e00cc125596fb27c..5d3c148a318466e2dd2502653e25876e940220e4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-27  Michael Hope  <michaelh@juju.net.nz>
+
+       * support/cpp2/Makefile.in (install): Added creation of dest dir.
+
+       * support/makebin/Makefile (install): Added creation of dest dir.
+
 2001-10-24 Karl Bongers <karl@turbobit.com>
 
        * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
index 4871fec1c8d193675e809acb1c828435056ba16a..7657f242b15b16fb8ba9d14fac182b56032ad09f 100644 (file)
@@ -105,6 +105,7 @@ OBSTACK=obstack.o
 # End of variables for you to override.
 
 install: all
+       mkdir -p $(bindir)
        $(INSTALL) $(TARGET) `echo $(bindir)/sdcpp|sed '$(transform)'`
        $(STRIP) `echo $(bindir)/sdcpp|sed '$(transform)'`
 
index 6de6460044c056c889e0152343a354c0376e0407..e8d2adda5cbd8caf98ea66b57dd6913ace56ad1b 100644 (file)
@@ -11,6 +11,7 @@ $(BIN): $(OBJ)
        $(CC) -o $(BIN) $(OBJ)
 
 install: all
+       mkdir -p $(bindir)
        $(INSTALL) $(BIN) `echo $(bindir)/makebin|sed '$(transform)'`
 
 include clean.mk