2 all: test.exe pcxtest.exe test2.exe scroll.exe
\r
4 scroll.exe: scroll.obj modex16.obj dos_kb.obj bitmap.obj
\r
5 wcl $(FLAGS) scroll.obj modex16.obj dos_kb.obj bitmap.obj
\r
7 wcl $(FLAGS) -c scroll.c
\r
8 test.exe: test.obj modex16.obj bitmap.obj
\r
9 wcl $(FLAGS) test.obj modex16.obj bitmap.obj
\r
11 test2.exe: test2.obj modex16.obj bitmap.obj
\r
12 wcl $(FLAGS) test2.obj modex16.obj bitmap.obj
\r
14 pcxtest.exe: pcxtest.obj modex16.obj bitmap.obj
\r
15 wcl $(FLAGS) pcxtest.obj modex16.obj bitmap.obj
\r
17 test.obj: test.c modex16.h
\r
18 wcl $(FLAGS) -c test.c
\r
20 test2.obj: test2.c modex16.h
\r
21 wcl $(FLAGS) -c test2.c
\r
23 pcxtest.obj: pcxtest.c modex16.h
\r
24 wcl $(FLAGS) -c pcxtest.c
\r
26 modex16.obj: modex16.h modex16.c
\r
27 wcl $(FLAGS) -c modex16.c
\r
29 dos_kb.obj: dos_kb.h dos_kb.c
\r
30 wcl $(FLAGS) -c dos_kb.c
\r
32 bitmap.obj: bitmap.h bitmap.c
\r
33 wcl $(FLAGS) -c bitmap.c
\r