home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 339.lha / 3d_Library_src_v1.0 / makefile < prev    next >
Makefile  |  1990-01-09  |  221b  |  15 lines

  1. CFLAGS= +l -s
  2.  
  3. .c.o32:
  4.         cc $(CFLAGS) -o $@ $*.c
  5.  
  6. test.o32: test.c 3d.c
  7.         cc $(CFLAGS) -o test.o32 test.c
  8.  
  9. test: test.o32
  10.         ln test.o32 +Q -lm32 -lc32
  11.  
  12. cube: cube.o32
  13.         ln cube.o32 +Q -lm32 -lc32
  14.  
  15.