home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 545b.lha / RexxHS / aztec / makefile < prev    next >
Encoding:
Makefile  |  1991-09-07  |  518 b   |  32 lines

  1. #
  2. # Aztec C makefile for building the ARexx function library called
  3. # 'rexxhs.library'.
  4. #
  5.  
  6. .c.o:
  7.     cc $(CFLAGS) -o $@ $*.c
  8.  
  9. .asm.o:
  10.     as -icc:asm -o $@ $*.asm
  11.  
  12. #
  13. # Important: don't change these flags unless you know what you're doing!
  14. # In particular, -sn and -so cause problems...
  15. #
  16. CFLAGS=-r6 -safmpr
  17.  
  18. #
  19. # Add your object files here.
  20. #
  21.  
  22. OBJ = libstart.o libsup.o aztecglue.o rexxhs.o
  23.  
  24. rexxhs.library: $(OBJ)
  25.     ln -o rexxhs.library $(OBJ) -lc
  26.  
  27. install:
  28.     copy rexxhs.library libs:
  29.  
  30. clean:
  31.     delete rexxhs.library
  32.