home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / iopltest.zip / makefile < prev    next >
Makefile  |  1995-05-19  |  230b  |  10 lines

  1. all: test_iopl.exe
  2.  
  3. test_iopl.exe: test_iopl.obj test_iopl.def iopl.obj
  4.     gcc test_iopl.obj test_iopl.def iopl.obj -Zomf -Zcrtdll
  5. test_iopl.obj: test_iopl.c
  6.     gcc -c test_iopl.c -Zomf
  7. iopl.obj: iopl.asm
  8.     \masm\masm iopl;
  9.  
  10.