Nmake Patched -

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

clean: del $(OBJS) calc.exe

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

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

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

This article has 6 comments

Leave a Comment

Your email address will not be published. Required fields are marked *