home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 164.lha / ARexx / Flist_etc / makefile < prev    next >
Makefile  |  1988-04-28  |  260b  |  18 lines

  1. CFLAGS= -s -n
  2.  
  3. OBJECTS = rexxport.o32 rexxglue.o
  4.  
  5. .asm.o:
  6.         as -C -D $*.asm
  7.  
  8. .c.o32:
  9.         cc +l $(CFLAGS) -o $@ $*.c
  10.  
  11. Flist:  Flist.o32 $(OBJECTS)
  12.         ln -g Flist.o32 $(OBJECTS) -larp32 -lc32
  13.  
  14. back:   back.o32
  15.         ln -g back.o32 -lc32 -lm32
  16.  
  17.  
  18.