home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume9 / rwhoparse / Makefile next >
Encoding:
Makefile  |  1989-12-12  |  469 b   |  22 lines

  1. #################################################################
  2. #
  3. # rwhoparse makefile created 12/10/89
  4. #
  5. # No copyrights inplied or requested.  This code is supplied as is
  6. # have fun using it and report any bugs to:
  7. #
  8. #      robert@longs.LANCE.ColoState.edu
  9. #
  10. #################################################################
  11. OBJS=    rwhoparse.o
  12. SRCS=    rwhoparse.c
  13.  
  14. TARGET= rwhop
  15. CC= gcc -O -ansi
  16.  
  17. all:    
  18.     $(CC) -o $(TARGET) rwhoparse.c 
  19.     
  20. clean:
  21.     rm -f *.o $(TARGET) core
  22.