/trunk/Examples/pike/class/Makefile
# · Makefile · 19 lines · 15 code · 4 blank · 0 comment · 0 complexity · c44dd157e3e5f6a43bcfdf9db931c001 MD5 · raw file
- TOP = ../..
- SWIG = $(TOP)/../preinst-swig
- CXXSRCS = example.cxx
- TARGET = example
- INTERFACE = example.i
- LIBS = -lm
- all:
- $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
- TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' pike_cpp
- static:
- $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
- TARGET='mypike' INTERFACE='$(INTERFACE)' pike_cpp_static
- clean:
- $(MAKE) -f $(TOP)/Makefile pike_clean
- check: all