Apply automake everywhere
Keep configure scripts so that people are not *forced* to autoconf
Keep sources generated by yacc so that compilation without yacc
is possible.
Source/LParse/cscanner.c: change lyacc.h into parser.h to please
default yacc generation rules.
Use AC_CONFIG_SUBDIRS in configure.in instead of hand made script.
Update all relevant .cvsignore to include .deps
Fixed missing ; line 136 Source/Swig/swig.h
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@164 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
464 B
Makefile
15 lines
464 B
Makefile
include $(top_srcdir)/Makefile.common
|
|
|
|
SWIG_LIB = $(prefix)/lib/swig1.3
|
|
|
|
INCLUDES = -I$(top_srcdir)/Source/SWIG1.1 \
|
|
-I$(top_srcdir)/Source/Include \
|
|
-DSWIG_LIB='"$(SWIG_LIB)"' \
|
|
-DSWIG_CC='"$(CC)"'
|
|
|
|
noinst_LIBRARIES = libmodules.a
|
|
|
|
libmodules_a_SOURCES = ascii.cxx guile.cxx html.cxx java.cxx perl5.cxx pycpp.cxx \
|
|
python.cxx swigmain.cxx tcl8.cxx
|
|
|
|
noinst_HEADERS = ascii.h guile.h html.h java.h nodoc.h perl5.h python.h tcl8.h wrap.h
|