PC_graph/Makefile.win
2025-01-04 22:25:16 +01:00

10 lines
168 B
Makefile

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