
CC = gcc
LIBS = 
DEFS =
BINS = autorespond

all: $(BINS)

clean:
	rm -f *.o core $(BINS)

autorespond: autorespond.c
	$(CC) $(DEFS) -o autorespond autorespond.c $(LIBS)
