home *** CD-ROM | disk | FTP | other *** search
Makefile | 1988-04-28 | 466 b | 23 lines |
- ############################################################################
- # Makefile for the "Newton" program, UNIX 4.2BSD.
- #
- # Written by Daniel Barrett. 100% PUBLIC DOMAIN.
- ############################################################################
- SRC=main.c complex.c io.c ds.c
- OBJ=main.o complex.o io.o ds.o
- LIBS=-lm
- PROG=newton
- CFLAGS=-DUNIX -g
-
-
- all: $(PROG)
-
-
- $(PROG): $(OBJ)
- cc $(OBJ) -o $(PROG) $(LIBS)
-
- $(OBJ): decl.h
-
- clean:
- rm -f *.o core
-