logo

libbulletml

Library of Bullet Markup Language (forked from https://shinh.skr.jp/libbulletml/index_en.html )git clone https://hacktivis.me/git/libbulletml.git

Makefile (370B)


  1. CXX=g++
  2. DMD=dmd
  3. PERL=perl
  4. CPPFLAGS=-g
  5. DFLAGS=-g
  6. all: cpp_test
  7. cpp_test: cpp.o cpp_test.o
  8. $(DMD) cpp_test $(CPPFLAGS) cpp.o
  9. cpp.o: d_cpp_interface.h cpp.cpp
  10. $(CXX) $(CPPFLAGS) -c cpp.cpp
  11. cpp_test.o: cpp_inter.d cpp_test.d
  12. $(DMD) $(DFLAGS) -c cpp_test.d
  13. cpp_inter.d: cpp.cpp
  14. $(PERL) create_d_import.pl cpp.cpp cpp_inter.d
  15. clean:
  16. rm -f *.o cpp_test cpp_inter.d