home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / disks / disk445.lzh / MWTape / makefile < prev    next >
Makefile  |  1991-01-24  |  416b  |  25 lines

  1. #
  2. #  Make everything by default.
  3. #
  4. all: tape-handler
  5. #  Remove all the intermediate files.
  6. #
  7. #clean:
  8. #    delete *.o *.o32 *.bak
  9. #
  10. #  Default rules for assembling and compiling.
  11. #
  12. .SUFFIXES: .c .o32 .o .asm
  13.  
  14. .c.o:
  15.     cc $*.c
  16. .c.o32:
  17.     cc +L -o $*.o32 $*.c
  18. .asm.o:
  19.     a68k -iinclude: -q100 $*.asm
  20.  
  21. tape-handler: tapedev.o32 req.o32 misc.o32
  22.     ln +Q -o tape-handler tapedev.o32 req.o32 misc.o32 -lc32
  23.     copy tape-handler l:
  24.  
  25.