Makefile 155 B

12345678
  1. main.exe: test.cpp
  2. g++ ../tedi2html.cpp -c
  3. g++ ../../tedi2lang/tedi2lang.cpp -c
  4. g++ tedi2lang.o tedi2html.o test.cpp -o tests
  5. clean:
  6. rm *.o
  7. rm tests