10 lines
168 B
Makefile
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)
|
|
|