*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@113 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2000-01-19 04:18:21 +00:00
commit 2c9b7132fc
3 changed files with 10 additions and 1 deletions

View file

@ -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/`; \

3
README
View file

@ -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,

View file

@ -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)