all: filebug.a
	echo all up to date

filebug.a: filebug.o map.o
	rm filebug.a
	ar -q filebug.a filebug.o map.o

map.o: map.c
	cc -c map.c

filebug.o: filebug.c
	cc -c filebug.c
