PageRenderTime 42ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/trunk/Examples/perl5/class/Makefile

#
Makefile | 19 lines | 15 code | 4 blank | 0 comment | 0 complexity | cb097c4194d1b30d19150c186fc25ebb MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. TOP = ../..
  2. SWIG = $(TOP)/../preinst-swig
  3. CXXSRCS = example.cxx
  4. TARGET = example
  5. INTERFACE = example.i
  6. LIBS = -lm
  7. all::
  8. $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
  9. TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' perl5_cpp
  10. static::
  11. $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
  12. TARGET='myperl' INTERFACE='$(INTERFACE)' perl5_cpp_static
  13. clean::
  14. $(MAKE) -f $(TOP)/Makefile perl5_clean
  15. check: all