CFLAGS=-Wall -g

all: fake gofake

gofake:
	go build -o gofake fake.go

clean:
	rm -f fake gofake
