home *** CD-ROM | disk | FTP | other *** search
Makefile | 1989-12-12 | 469 b | 22 lines |
- #################################################################
- #
- # rwhoparse makefile created 12/10/89
- #
- # No copyrights inplied or requested. This code is supplied as is
- # have fun using it and report any bugs to:
- #
- # robert@longs.LANCE.ColoState.edu
- #
- #################################################################
- OBJS= rwhoparse.o
- SRCS= rwhoparse.c
-
- TARGET= rwhop
- CC= gcc -O -ansi
-
- all:
- $(CC) -o $(TARGET) rwhoparse.c
-
- clean:
- rm -f *.o $(TARGET) core
-