CFLAGS=-Wall -g

all: bug nobug

bug: bug.o

nobug: pmap_prot2.o bug.o
	$(CC) $? -o $@

clean:
	-rm nobug bug *.o *~
