/trunk/Examples/perl5/class/Makefile
Makefile | 19 lines | 15 code | 4 blank | 0 comment | 0 complexity | cb097c4194d1b30d19150c186fc25ebb MD5 | raw file
1TOP = ../.. 2SWIG = $(TOP)/../preinst-swig 3CXXSRCS = example.cxx 4TARGET = example 5INTERFACE = example.i 6LIBS = -lm 7 8all:: 9 $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \ 10 TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' perl5_cpp 11 12static:: 13 $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \ 14 TARGET='myperl' INTERFACE='$(INTERFACE)' perl5_cpp_static 15 16clean:: 17 $(MAKE) -f $(TOP)/Makefile perl5_clean 18 19check: all