.c.o:
	$(CC) $(CFLAGS) -c $<

all:	getopt.c getopt.h
	$(CC) $(CFLAGS) -c getopt.c	

clean:
	rm -f *.o
