home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / cdrom / cybersound / cdplayer / source / makefile < prev    next >
Makefile  |  1977-12-31  |  1KB  |  33 lines

  1. #******************************************************************************
  2. #*
  3. #* SAS-C 6.51 makefile for 14 bit CDPlayer
  4. #*
  5. #* (c) 1995 by Christian Buchner
  6. #*
  7. #******************************************************************************
  8.  
  9. ##############################################################################
  10. # Default rules...
  11. #
  12.  
  13. .c.o:
  14.     SC NOSTKCHK PARMS=REG NMINC STRMERGE STREQ MCCONS COMNEST UNSCHAR $*.c
  15.  
  16.  
  17. ##############################################################################
  18. # compile and link the program
  19. #
  20.  
  21. /CDPlayer:        DeliHeader.o CLIInterface.o WBInterface.o DeliInterface.o DeliStubs.o CDPlayer.o
  22.     SLINK FROM DeliHeader.o CLIInterface.o WBInterface.o DeliInterface.o DeliStubs.o CDPlayer.o TO /CDPlayer SC SD ND NOICONS LIB LIB:amiga.lib+LIB:sc.lib+LIB:debug.lib
  23.     Copy /CDPlayer DELITRACKER:DeliPlayers/
  24.  
  25. CDPlayer.o:        CDPlayer.c CDPlayer_Protos.h //14bit.driver/Source/Driver_protos.h //14bit.driver/Source/Driver_pragmas.h //14bit.driver/Source/Driver.h
  26.  
  27. CLIInterface.o:        CLIInterface.c CDPlayer_Protos.h
  28. WBInterface.o:        WBInterface.c CDPlayer_Protos.h
  29. DeliInterface.o:    DeliInterface.c CDPlayer_Protos.h
  30.  
  31. DeliHeader.o:        DeliHeader.asm
  32. DeliStubs.o:        DeliStubs.asm
  33.