home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume6 / bday / Makefile < prev    next >
Makefile  |  1989-05-14  |  489b  |  27 lines

  1. ##
  2. ##  Makefile for birthday greetings.
  3. ##  Written by Rich $alz, <rsalz@bbn.com>.  This package has no copyright.
  4. ##  $Header: Makefile,v 1.1 89/05/08 11:07:14 rsalz Exp $
  5. ##
  6.  
  7. CFLAGS    = -O
  8.  
  9. all:        bday bday.8
  10.  
  11. install:    all
  12.     @echo "Install according to local convention"
  13.  
  14. clean:
  15.     rm -f foo core SHAR tags lint a.out *.o bday
  16.  
  17. bday:        bday.c
  18.     @rm -f bday
  19.     $(CC) -o bday $(CFLAGS) bday.c
  20.  
  21. ##  I know it fits in one kit, so...
  22. kit:
  23.     @rm -f SHAR
  24.     makekit -m
  25.     @rm -f MANIFEST.BAK
  26.     @mv Part01 SHAR
  27.