Workaround for the header file copying dependency hell

This commit is contained in:
Hans Lambermont
2003-01-04 15:07:25 +00:00
parent 302399b9d0
commit 45b243ac47
12 changed files with 47 additions and 47 deletions

View File

@@ -25,7 +25,7 @@
#
# The Original Code is: all of this file.
#
# Contributor(s): none yet.
# Contributor(s): Hans Lambermont
#
# ***** END GPL/BL DUAL LICENSE BLOCK *****
# moto main makefile.
@@ -46,11 +46,11 @@ install: all debug
@[ -d $(NAN_MOTO)/include ] || mkdir $(NAN_MOTO)/include
@[ -d $(NAN_MOTO)/lib ] || mkdir $(NAN_MOTO)/lib
@[ -d $(NAN_MOTO)/lib/debug ] || mkdir $(NAN_MOTO)/lib/debug
cp -f $(DIR)/libmoto.a $(NAN_MOTO)/lib/
cp -f $(DIR)/debug/libmoto.a $(NAN_MOTO)/lib/debug/
@../tools/cpifdiff.sh $(DIR)/libmoto.a $(NAN_MOTO)/lib/
@../tools/cpifdiff.sh $(DIR)/debug/libmoto.a $(NAN_MOTO)/lib/debug/
ifeq ($(OS),darwin)
ranlib $(NAN_MOTO)/lib/libmoto.a
ranlib $(NAN_MOTO)/lib/debug/libmoto.a
endif
cp -f include/*.h $(NAN_MOTO)/include/
@../tools/cpifdiff.sh include/*.h $(NAN_MOTO)/include/