#
# 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
