X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=16%2Fmodex16%2Fmakefile;h=b11f89a095dbf729c1e33080ac1993fd5a088acc;hb=5ad8cc4e485b54223dac7f5416ce8463e4dc09a4;hp=f4f4c19dda3e20d2b1875a8c95e426162d37190a;hpb=3686f3bf9c15445091aef92692ccf3486389efbc;p=16.git diff --git a/16/modex16/makefile b/16/modex16/makefile old mode 100644 new mode 100755 index f4f4c19d..b11f89a0 --- a/16/modex16/makefile +++ b/16/modex16/makefile @@ -1,10 +1,37 @@ -all: test.exe +FLAGS=-0 +all: test.exe pcxtest.exe test2.exe scroll.exe -test.exe: test.obj modex16.obj - wcl -0 -d2 test.obj modex16.obj +scroll.exe: scroll.obj modex16.obj dos_kb.obj bitmap.obj + wcl $(FLAGS) scroll.obj modex16.obj dos_kb.obj bitmap.obj +scroll.obj: scroll.c + wcl $(FLAGS) -c scroll.c +test.exe: test.obj modex16.obj bitmap.obj + wcl $(FLAGS) test.obj modex16.obj bitmap.obj + +test2.exe: test2.obj modex16.obj bitmap.obj + wcl $(FLAGS) test2.obj modex16.obj bitmap.obj + +pcxtest.exe: pcxtest.obj modex16.obj bitmap.obj + wcl $(FLAGS) pcxtest.obj modex16.obj bitmap.obj test.obj: test.c modex16.h - wcl -0 -d2 -c test.c + 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 -0 -d2 -c modex16.c + wcl $(FLAGS) -c modex16.c + +dos_kb.obj: dos_kb.h dos_kb.c + wcl $(FLAGS) -c dos_kb.c + +bitmap.obj: bitmap.h bitmap.c + wcl $(FLAGS) -c bitmap.c + +clean: + del *.obj + del *.exe