X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=16%2Fmodex16%2FMAKEFILE;h=c48885b8e88b319ff3c7e970ab100b7310270097;hb=42b3ed060a69fb588c7b933748400f2a052add0c;hp=b5a3fb34f914f51b3fdfeda2333423bd86007243;hpb=d274f7cdb66fd39016a2d342ed8b9d5a548c15fe;p=16.git diff --git a/16/modex16/MAKEFILE b/16/modex16/MAKEFILE index b5a3fb34..c48885b8 100644 --- a/16/modex16/MAKEFILE +++ b/16/modex16/MAKEFILE @@ -1,17 +1,27 @@ -FLAGS=-0 -all: test.exe pcxtest.exe +FLAGS=-0 -d3 +all: test.exe pcxtest.exe test2.exe test.exe: test.obj modex16.obj wcl $(FLAGS) test.obj modex16.obj +test2.exe: test2.obj modex16.obj + wcl $(FLAGS) test2.obj modex16.obj + pcxtest.exe: pcxtest.obj modex16.obj wcl $(FLAGS) pcxtest.obj modex16.obj test.obj: test.c modex16.h wcl $(FLAGS) -c test.c +test2.obj: test2.c modex16.h + wcl $(FLAGS) -c test2.c + pcxtest.obj: pcxtest.c modex16.h wcl $(FLAGS) -c pcxtest.c modex16.obj: modex16.h modex16.c wcl $(FLAGS) -c modex16.c + +clean: + del *.obj + del *.exe