home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume3
/
egetopt
/
Makefile
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Makefile
|
1989-02-03
|
188 b
|
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