PROGRAM = what_date

CFLAGS = -g -Wall -Wstrict-prototypes
LDFLAGS = -g

default: $(PROGRAM)

$(PROGRAM): main.o what_date.o
	$(CC) $(LDFLAGS) -o $@ $^

main.o what_date.o: what_date.h

clean:
	rm -f *~ core *.o

immaculate: clean
	rm -f $(PROGRAM)
