PC_graph/Makefile.win
2024-12-30 19:21:45 +01:00

10 lines
145 B
Makefile

BIN = graph.exe
OBJ = errors.o lex.o main.o math_functions.o parser.o ps_graph.o tree.o
.c.obj:
cl $< /c
$(BIN): $(OBJ)
cl $(OBJ) /Fe$(BIN)