# --------------------------------------------------------------- # $Header$ #---------------------------------------------------------------- srcdir = @srcdir@ VPATH = @srcdir@ SRCS = init.c inputmodule.c cppmodule.c cparsemodule.c OBJS = init.o inputmodule.o cppmodule.o cparsemodule.o prefix = @prefix@ exec_prefix = @exec_prefix@ CC = @CC@ AR = @AR@ RANLIB = @RANLIB@ CFLAGS = @CFLAGS@ INCLUDE = -I$(srcdir)/. -I$(srcdir)/../Include -I$(srcdir)/../DOH/Include -I$(srcdir)/../Swig -I$(srcdir)/../Preprocessor -I$(srcdir)/../LParse TARGET = libmodules.a .c.o: $(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $< all: $(TARGET) $(TARGET): $(OBJS) $(AR) cr $(TARGET) $(OBJS) $(RANLIB) $(TARGET) clean: rm -f *.o *~ core *.so *.a *_wrap.*