1234567891011121314151617 |
- main.exe: main.cpp
- g++ subprojects/tedi2lang/tedi2lang.cpp -c
- g++ subprojects/tedi2html/tedi2html.cpp tedi2lang.o -c
- g++ subprojects/tedi2tex/tedi2tex.cpp tedi2lang.o -c
- g++ subprojects/tedi2md/tedi2md.cpp tedi2lang.o -c
- g++ subprojects/tedi2ad/tedi2ad.cpp tedi2lang.o -c
- g++ preprocessor.cpp -c
- g++ tedi2html.o tedi2tex.o tedi2md.o tedi2ad.o tedi2lang.o preprocessor.o main.cpp -o MT
- clean:
- rm *.o
- rm MT
- rm *.html
|