git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@1042 626c5289-ae23-0410-ae9c-e8d60b6d4f22
54 lines
999 B
Makefile
54 lines
999 B
Makefile
#######################################################################
|
|
# WAD Makefile
|
|
#
|
|
# David Beazley
|
|
# January 1, 2001
|
|
#######################################################################
|
|
|
|
# These are the files that make up the WAD core
|
|
SRCS = wadtcl.c
|
|
OBJS = wadtcl.o
|
|
INCLUDE = -I../Include -I. $(SINCLUDE)
|
|
WADOPT = @WADOPT@
|
|
|
|
# Location of your Tcl installation
|
|
TCLINCLUDE = @TCLINCLUDE@
|
|
TCLSRCS = wadtclinit.cxx
|
|
TCLOBJS = wadtclinit.o
|
|
|
|
# C Compiler
|
|
CC = @CC@
|
|
CFLAGS = #@CCSHARED@
|
|
|
|
# C++ Compiler
|
|
CXX = @CXX@
|
|
CXXFLAGS = #@CXXSHARED@
|
|
|
|
# Linking options
|
|
CLINK =
|
|
CXXLINK = @CXXLINK@
|
|
|
|
# Rules for creation of a .o file from .cxx
|
|
.SUFFIXES: .cxx
|
|
.cxx.o:
|
|
$(CXX) $(CXXFLAGS) $(WADOPT) $(INCLUDE) -c -o $*.o $<
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) $(TCLINCLUDE) $(WADOPT) $(INCLUDE) -c -o $*.o $<
|
|
|
|
tcl: $(OBJS) $(TCLOBJS)
|
|
$(CXXLINK) $(OBJS) $(TCLOBJS) -o libwadtcl.so -L.. -lwadcore
|
|
cp libwadtcl.so ..
|
|
|
|
wc::
|
|
wc $(SRCS)
|
|
|
|
semi::
|
|
@egrep ";" $(SRCS) $(TCLSRCS) | wc
|
|
|
|
clean::
|
|
rm -f *.o *.so *~
|
|
|
|
|
|
|
|
|