Nmake |verified| ★ Free Forever

main.obj: main.c math.h math.obj: math.c math.h

CFLAGS = /W3 OBJS = main.obj math.obj all: calc.exe

clean: del $(OBJS) calc.exe

Build:

app.exe: main.obj link main.obj /OUT:app.exe

calc.exe: $(OBJS) link $(OBJS) /OUT:$@