Makefile 336 B

1234567891011
  1. main.exe: main.cpp
  2. g++ subprojects/tedi2lang/tedi2lang.cpp -std=c++17 -lstdc++fs -c
  3. g++ subprojects/tedi2html/tedi2html.cpp -std=c++17 -lstdc++fs -c
  4. g++ page.cpp -std=c++17 -lstdc++fs -c
  5. g++ folder.cpp -std=c++17 -lstdc++fs -c
  6. g++ page.o folder.o tedi2html.o tedi2lang.o main.cpp -std=c++17 -lstdc++fs -o MT
  7. clean:
  8. rm *.o
  9. rm MT