fake/Makefile

10 lines
98 B
Makefile

CFLAGS=-Wall -g
all: fake gofake
gofake:
go build -o gofake fake.go
clean:
rm -f fake gofake