home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume6 / copt / makefile < prev    next >
Encoding:
Makefile  |  1989-03-07  |  300 b   |  16 lines

  1. # $Header: makefile,v 1.1 89/03/03 12:53:24 np Exp $
  2. all:    cset.a demo
  3.  
  4. demo:    demo.c cset.a
  5.     cc -o demo demo.c cset.a
  6. cset.a: cset.o d_optable.o numarg.o abbrev.o not_kwd.o
  7.     ranlib cset.a
  8. cset.o: cset.c cset.d
  9.     cc -c cset.c
  10.     ar rv cset.a cset.o
  11. .c.o:;  cc -c $*.c
  12.     ar rv cset.a $*.o
  13.  
  14. cleanup:
  15.     rm *.o
  16.