home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / compress / splint.arc / makefile.bsd < prev    next >
Makefile  |  1989-04-12  |  308b  |  15 lines

  1. #
  2. # Makefile for splint/UNIX
  3. #
  4. all: splint
  5.  
  6. splint: splay.o splint.o getopt.o
  7.     cc -O -DBSD -o splint splay.o splint.o getopt.o
  8.  
  9. splay.o: splay.c splint.h
  10.     cc -O -DBSD -c splay.c
  11. splint.o: splint.c splint.h getopt.h
  12.     cc -O -DBSD -c splint.c
  13. getopt.o: getopt.c getopt.h
  14.     cc -O -DBSD -c getopt.c
  15.