home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 051.lha / Graphe / makefile < prev    next >
Encoding:
Makefile  |  1986-11-20  |  299 b   |  18 lines

  1. graph: window.o func.o main.o three-d.o help.o
  2.     ln -o graph window.o func.o three-d.o help.o main.o -lm32 -lc32
  3.  
  4. window.o: window.c
  5.     cc -s +l window.c
  6.  
  7. func.o: func.c
  8.     cc -s +l func.c
  9.  
  10. three-d.o: three-d.c
  11.     cc -s +l three-d.c
  12.  
  13. main.o: main.c
  14.     cc -s +l main.c
  15.  
  16. help.o: help.c
  17.     cc -s +l -z7000 help.c
  18.