all: 
	gcc fish.c -o bin/fish
	gcc build.c -o bin/build

clean: 
	rm fish
	rm build
