Makefile 429 B

1234567891011121314151617
  1. main.exe: main.cpp
  2. g++ subprojects/tedi2lang/tedi2lang.cpp -c
  3. g++ subprojects/tedi2html/tedi2html.cpp tedi2lang.o -c
  4. g++ subprojects/tedi2tex/tedi2tex.cpp tedi2lang.o -c
  5. g++ subprojects/tedi2md/tedi2md.cpp tedi2lang.o -c
  6. g++ subprojects/tedi2ad/tedi2ad.cpp tedi2lang.o -c
  7. g++ preprocessor.cpp -c
  8. g++ tedi2html.o tedi2tex.o tedi2md.o tedi2ad.o tedi2lang.o preprocessor.o main.cpp -o MT
  9. clean:
  10. rm *.o
  11. rm MT
  12. rm *.html