home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 552.lha / Format / MakeFile < prev    next >
Makefile  |  1991-09-08  |  489b  |  24 lines

  1. .c.o:
  2.     LC $(CFLAGS) $*.c
  3.  
  4. .asm.o:
  5.     ASM -IASM: $*.asm
  6.  
  7. CFLAGS        = -cimqws -b1 -r1 -v -mt0 -O -HFormat.SYM
  8. LFLAGS        = SC SD ND DEFINE __main=__tinymain
  9.  
  10. LIBS        = LIB:amiga2.0.lib LIB:lc.lib
  11.  
  12. OBJS        = Format.o StringFormat.o
  13.  
  14. all:        Format.SYM Format Find
  15.  
  16. Format:        $(OBJS)
  17.         BLINK LIB:cres.o $(OBJS) TO $@ LIB $(LIBS) $(LFLAGS)
  18.  
  19. Find:        Find.o StringFormat.o
  20.         BLINK LIB:cres.o Find.o StringFormat.o TO $@ LIB $(LIBS) $(LFLAGS)
  21.  
  22. Format.SYM:    PreInclude.c
  23.         LC -cimqws -ph -oFormat.SYM PreInclude.c
  24.