18 lines
213 B
Makefile
18 lines
213 B
Makefile
OBJ:=main.o
|
|
OUTPUT:= preparse
|
|
|
|
.PHONY: test debug clean
|
|
|
|
all test: debug
|
|
./$(OUTPUT) test.tex
|
|
|
|
debug: CXXFLAGS:= -g
|
|
debug: $(OUTPUT)
|
|
|
|
clean:
|
|
$(RM) $(OBJ) $(OUTPUT)
|
|
|
|
$(OUTPUT): $(OBJ)
|
|
$(CXX) $(OBJ) -o preparse
|
|
|