home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / os20 / forceicon-1.2.lha / ForceIcon / Source / SMakeFile < prev    next >
Makefile  |  1993-12-31  |  666b  |  41 lines

  1.  
  2. ### Some nice macros ;)))
  3.  
  4. LFLAGS    = VERBOSE SC SD NODEBUG STRIPDEBUG
  5. LIBS    = LIB:debug.lib LIB:sc.lib LIB:amiga.lib LIB:boopsiget.lib
  6. OBJS    = ForceIcon.o Interface.o Support.o Error.o
  7.  
  8.  
  9.  
  10. ### Head for the Global Symbol Table
  11.  
  12. ForceIcon.gst : ForceIcon_gst.c Protos.h ForceIcon.h
  13.     sc NOOBJNAME NODEBUG MGST=ForceIcon.gst ForceIcon_gst.c
  14.     GST ForceIcon.gst
  15.  
  16.  
  17. ### Compile all available C-Files
  18.  
  19. .c.o    :
  20.     sc $*.c GSTIMM MCCONS
  21.  
  22.  
  23. ### Assembler all available ASM-Files
  24.  
  25. .asm.o    :
  26.     genam $*.Asm
  27.  
  28.  
  29. ### Link that stuff together
  30.  
  31. ForceIcon : ForceIcon.gst $(OBJS)
  32.     slink WITH T:ForceIcon.WITH <<!(T:ForceIcon.WITH)
  33.         FROM
  34.         $(OBJS)
  35.         TO
  36.         ForceIcon
  37.         $(LFLAGS)
  38.         LIB
  39.         $(LIBS)
  40.     <
  41.