home *** CD-ROM | disk | FTP | other *** search
Makefile | 1989-04-13 | 308 b | 15 lines |
- #
- # Makefile for splint/UNIX
- #
- all: splint
-
- splint: splay.o splint.o getopt.o
- cc -O -DBSD -o splint splay.o splint.o getopt.o
-
- splay.o: splay.c splint.h
- cc -O -DBSD -c splay.c
- splint.o: splint.c splint.h getopt.h
- cc -O -DBSD -c splint.c
- getopt.o: getopt.c getopt.h
- cc -O -DBSD -c getopt.c