Cleaned up some of the experimental build. Added swig13 target (although

it doesn't work).


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@274 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-02-26 20:29:31 +00:00
commit 73fb891d00

View file

@ -34,7 +34,17 @@ swig: SWIG1.1 Modules1.1 Swig Preprocessor DOH
$(SOURCE)/DOH/libdoh.a \
$(LIBS)
experiment: Swig Preprocessor LParse Experiment Swim SWILL DOH
swig13: SWIG1.3 Modules1.1 Swig LParse Preprocessor DOH
$(CXX) -o $(TARGET) \
$(SOURCE)/Modules1.1/libmodules11.a \
$(SOURCE)/SWIG1.3/libswig13.a \
$(SOURCE)/Preprocessor/libcpp.a \
$(SOURCE)/LParse/liblparse.a \
$(SOURCE)/Swig/libswig.a \
$(SOURCE)/DOH/libdoh.a \
$(LIBS)
experiment: Swig Preprocessor LParse Experiment Swim SWILL DOH Xmlparse Expat
$(CXX) -o $(TARGET) \
$(SOURCE)/Experiment/libexp.a \
$(SOURCE)/Xmlparse/libxmlparse.a \
@ -50,6 +60,9 @@ experiment: Swig Preprocessor LParse Experiment Swim SWILL DOH
SWIG1.1:
@cd $(SOURCE)/SWIG1.1; $(MAKE)
SWIG1.3:
@cd $(SOURCE)/SWIG1.3; $(MAKE)
Modules1.1:
@cd $(SOURCE)/Modules1.1; $(MAKE)
@ -74,6 +87,13 @@ SWILL:
DOH:
@cd $(SOURCE)/DOH; $(MAKE)
Xmlparse:
@cd $(SOURCE)/Xmlparse; $(MAKE)
Expat:
@cd $(SOURCE)/Expat; $(Make)
.PHONY: SWIG1.1 Modules1.1 Swig Preprocessor LParse \
Experiment Swim SWILL DOH