This commit is contained in:
2017-10-07 23:21:00 +02:00
commit 512744013e
3 changed files with 268 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
OBJ:=main.o
OUTPUT:= preparse
.PHONY: test debug clean
test: debug
./$(OUTPUT) test.tex
debug: CFLAGS:= -g
debug: $(OUTPUT)
clean:
$(RM) $(OBJ) $(OUTPUT)
$(OUTPUT): $(OBJ)
$(CC) $(OBJ) -o preparse