ALL = catcher

all: $(ALL)

DEPSTUFF = Makefile

CFLAGS = -O -g -Wall -D_POSIX_SOURCE

catcher: $(DEPSTUFF) catcher.c 

clean:
	-rm $(ALL) *.core core *.o
