SHELL=/bin/sh

CC=gcc

# Objects we link together.
OBJ=lc.o get.o

all:	$(OBJ)
	$(CC) -o lc $(OBJ)

lc.o:	lc.c lc.h
get.o:	get.c lc.h

clean:
	-/bin/rm -f *.o lc core *.log  GCTLOG


