Update of /cvsroot/fxpy/FXPy/swig
In directory sc8-pr-cvs1:/tmp/cvs-serv29053
Modified Files:
Makefile
Removed Files:
build.sh
Log Message:
auto-dependencies target, build.sh is not needed
Index: Makefile
===================================================================
RCS file: /cvsroot/fxpy/FXPy/swig/Makefile,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- Makefile 29 Mar 2002 00:01:52 -0000 1.30
+++ Makefile 22 Feb 2003 00:31:08 -0000 1.31
@@ -7,6 +7,7 @@
# Name of swig executable
SWIG = swig
+PYTHON = python
# SWIG settings here
#DEFINES = -D__WIN32__ -DWIN32
@@ -46,6 +47,9 @@
all: $(WRAPPERS)
@cd ../src; python make_virtuals.py; python overloads.py; python ../swig/crlf.py *.py
+# will be automatically called when dependencies file is missing
+dependencies:
+ $(PYTHON) makedepend.py > dependencies
include dependencies
# Common Dialogs (needs special rule for SWIG bug workaround)
--- build.sh DELETED ---
|