home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume3 / egetopt / Makefile < prev    next >
Makefile  |  1989-02-03  |  188b  |  14 lines

  1. #
  2. # Makefile for building egetopt.o and a program that demonstrates it.
  3. #
  4. CFLAGS    =-g
  5.  
  6. all:    demo
  7.  
  8. egetopt.o:    egetopt.c
  9.  
  10. demo.o:        demo.c
  11.  
  12. demo:    demo.o egetopt.o
  13.     cc -o demo demo.o egetopt.o
  14.