home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 177.lha / Newton_v1.0 / Makefile.uni < prev    next >
Makefile  |  1988-04-28  |  466b  |  23 lines

  1. ############################################################################
  2. # Makefile for the "Newton" program, UNIX 4.2BSD.
  3. #
  4. # Written by Daniel Barrett.  100% PUBLIC DOMAIN.
  5. ############################################################################
  6. SRC=main.c complex.c io.c ds.c 
  7. OBJ=main.o complex.o io.o ds.o 
  8. LIBS=-lm
  9. PROG=newton
  10. CFLAGS=-DUNIX -g
  11.  
  12.  
  13. all:        $(PROG)
  14.  
  15.  
  16. $(PROG):    $(OBJ)
  17.         cc $(OBJ) -o $(PROG) $(LIBS)
  18.     
  19. $(OBJ):        decl.h
  20.  
  21. clean:
  22.         rm -f *.o core
  23.