home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / os2 / gtak212b.zip / SOURCE.ZIP / TAPE / makefile.os2 < prev    next >
Makefile  |  1992-09-25  |  1KB  |  44 lines

  1. ###############################################################################
  2. # $Id: makefile.os2,v 1.2 1992/09/11 21:17:16 ak Rel $
  3. ###############################################################################
  4. # $Log: makefile.os2,v $
  5. # Revision 1.2  1992/09/11  21:17:16  ak
  6. # Added -Uunix
  7. #
  8. # Revision 1.1  1992/09/02  19:05:15  ak
  9. # Initial revision
  10. #
  11. # Revision 1.1.1.1  1992/01/06  20:27:25  ak
  12. # Interface now based on ST01 and ASPI.
  13. # AHA_DRVR no longer supported.
  14. # Files reorganized.
  15. #
  16. # Revision 1.1  1992/01/06  20:27:23  ak
  17. # Initial revision
  18. #
  19. ###############################################################################
  20.  
  21. usage:
  22.     @echo "Make one of the targets: gcc or msc!"
  23.  
  24. # OS/2 32-bit, emx+gcc 0.8e
  25. gcc:
  26.     $(MAKE) -f makefile.os2 tape.exe DEF="tape.def" \
  27.     CC="gcc -O -Zomf" O=".obj" CFLAGS="-DOS2=2" LDFLAGS="-s -Zsys -los2"
  28.  
  29. # OS/2 16-bit, MS C 6.00
  30. msc:
  31.     $(MAKE) -f makefile.os2 tape.exe DEF="tape.def" \
  32.     CC="cl -nologo -O" O=".obj" CFLAGS="-DOS2=1" LDFLAGS="-Lp"
  33.  
  34. .c$O:
  35.     $(CC) $(CFLAGS) -c $<
  36.  
  37. tape.exe: tctl$O tape$O errtab$O scsitape$O $(DEF)
  38.     $(CC) $& $(LDFLAGS) -o $@
  39.  
  40. scsiaspi$O : aspi.h scsi.h
  41. scsitape$O : aspi.h scsi.h tapedrvr.h
  42.  
  43. tape$O : tape.h scsi.h tapedrvr.h
  44.