diff --git a/SWIG/Makefile.in b/SWIG/Makefile.in index b6ec70fc9..2e21af78f 100644 --- a/SWIG/Makefile.in +++ b/SWIG/Makefile.in @@ -23,9 +23,14 @@ LIB_DIR = $(prefix)/lib SWIGOBJS = Source/SWIG1.1/*.o Source/Modules1.1/*.o Source/DOH/Doh/*.o Source/Swig/*.o Source/Preprocessor/*.o +EXPOBJS = Source/DOH/Doh/*.o Source/Swig/*.o Source/Preprocessor/*.o Source/LParse/*.o Source/Experiment/*.o + swig: objs $(CXX) $(SWIGOBJS) $(LIBS) -o $(TARGET) +experiment: objs + $(CC) $(EXPOBJS) $(LIBS) -o $(TARGET) + objs: @ORIG_DIR=`pwd`; \ for i in `ls Source/`; \ diff --git a/SWIG/README b/SWIG/README index 73ac8cae0..34330f92c 100644 --- a/SWIG/README +++ b/SWIG/README @@ -17,6 +17,9 @@ SWIG release. The guilty parties working on this are: - Loic Dachary (loic@ceic.com) (Perl5) - Harco de Hilster (Harco.de.Hilster@ATComputing.nl) (Java) +*** Disclaimer : The Source directory is a nightmare right now. Please +pardon our dust. + General overview: ================= The primary goal of future development is to make SWIG more modular, diff --git a/SWIG/configure.in b/SWIG/configure.in index bd9d67e9e..7f7d375bd 100644 --- a/SWIG/configure.in +++ b/SWIG/configure.in @@ -454,4 +454,5 @@ AC_SUBST(PERL5EXT) # stuff, we're going to skip it! AC_OUTPUT(Makefile Source/Swig/Makefile Source/DOH/Doh/Makefile Source/DOH/Makefile Source/Preprocessor/Makefile Source/SWIG1.1/Makefile - Source/Modules1.1/Makefile Source/LParse/Makefile Examples/Makefile) + Source/Modules1.1/Makefile Source/LParse/Makefile + Source/Experiment/Makefile Examples/Makefile)