home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1989 …il & Dave's Excellent CD / Excellent CD HFS.raw / Moof / Goodies / DTS Goodies / Obfuscated_C / 1986 / Makefile < prev    next >
Encoding:
Makefile  |  1989-04-13  |  530 b   |  37 lines  |  [TEXT/MPS ]

  1. # %W% %G% %U%
  2. #
  3. # 1986 makefile
  4.  
  5. SHELL=/bin/sh
  6. WINNERS=marshall hague applin bright stein holloway august pawka wall
  7.  
  8. all: ${WINNERS}
  9.  
  10. marshall: marshall.c
  11.     cc $? -o $@
  12. hague: hague.c
  13.     cc $? -o $@
  14. applin: applin.c
  15.     cc $? -o $@
  16. bright: bright.c
  17.     cc $? -o $@
  18. stein: stein.c
  19.     -rm -f a.out
  20.     cc $? -o $@
  21.     -ln $@ a.out
  22. holloway: holloway.c
  23.     cc $? -o $@
  24. august: august.c
  25.     cc $? -o $@
  26. pawka: pawka.c
  27.     cc $? -o $@
  28. wall: wall.c
  29.     cc $? -o $@
  30.  
  31. clean:
  32.     rm -f core
  33. clobber: clean
  34.     rm -f ${WINNERS} a.out
  35. install: all
  36.     @echo are you kidding'??'
  37.