home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume3
/
egetopt
/
Makefile
< prev
next >
Wrap
Makefile
|
1989-02-03
|
188b
|
14 lines
#
# Makefile for building egetopt.o and a program that demonstrates it.
#
CFLAGS =-g
all: demo
egetopt.o: egetopt.c
demo.o: demo.c
demo: demo.o egetopt.o
cc -o demo demo.o egetopt.o