*** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@35 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
b558974525
commit
99683e442c
1 changed files with 46 additions and 0 deletions
46
Source/Makefile.in
Normal file
46
Source/Makefile.in
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
#######################################################################
|
||||
# $Header$
|
||||
# Simplified Wrapper and Interface Generator (SWIG)
|
||||
#
|
||||
#######################################################################
|
||||
|
||||
TARGET = swig
|
||||
SHELL = /bin/sh
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
LIBS =
|
||||
|
||||
#
|
||||
#
|
||||
#
|
||||
|
||||
DIRS = DOH Core Preprocessor SWIG1.1 Modules1.1
|
||||
SWIGOBJS = SWIG1.1/*.o Modules1.1/*.o
|
||||
|
||||
swig: objs
|
||||
$(CXX) $(SWIGOBJS) $(LIBS) -o $(TARGET)
|
||||
|
||||
objs:
|
||||
@for i in $(DIRS); \
|
||||
do \
|
||||
cd $$i; $(MAKE); cd .. ;\
|
||||
done;
|
||||
|
||||
clean:
|
||||
@for i in $(DIRS); \
|
||||
do \
|
||||
cd $$i; $(MAKE) clean; cd ..; \
|
||||
done;
|
||||
rm -f swig
|
||||
|
||||
nuke: clean
|
||||
@cd SWIG; $(MAKE) nuke
|
||||
@cd Modules; $(MAKE) nuke
|
||||
@cd Examples; $(MAKE) nuke
|
||||
@cd Tests; $(MAKE) clean
|
||||
@cd Runtime; $(MAKE) clean
|
||||
rm -f Makefile Makefile.template config.*
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue