1 COPTS = /c /nologo /W4 /AL 2 LOPTS = /nologo 3 4 OBJS = \ 5 cpost.obj\ 6 cpostp1.obj\ 7 cpostp2.obj\ 8 cpostutl.obj\ 9 cpostpar.obj\ 10 ctok.obj\ 11 parsearg.obj\ 12 list.obj\ 13 hash.obj\ 14 tokfile.obj 15 16 17 cpost.exe : $(OBJS) 18 link $(LOPTS) $(OBJS),$@,nul,$(LIBS); 19 20 .c.obj: 21 cl $(COPTS) /Fo$@ $< 22 23 cpost.obj : cpost.h ctok.h tokfile.h parsearg.h cposthdr.h 24 cpostp1.obj : cpost.h ctok.h 25 cpostp2.obj : cpost.h ctok.h 26 cpostutl.obj : cpost.h ctok.h tokfile.h 27 cpostpar.obj : cpost.h ctok.h 28 ctok.obj : ctok.h 29 list.obj : list.h 30 hash.obj : hash.h 31 tokfile.obj : tokfile.h 32 parsearg.obj : parsearg.h 33 34 35 clean : 36 del *.obj 37 del *.exe