Skip to content
Snippets Groups Projects
Makefile 277 B
Newer Older
KERDREUX Jerome's avatar
KERDREUX Jerome committed
all:lamp dumper chandelier

tidy:go.sum
	go mod tidy

lamp:tidy
	go build -o bin/lamp lamp.go
	strip bin/lamp

dumper:tidy
	go build -o bin/dumper dumper.go
	strip bin/dumper

chandelier:tidy
	go build -o bin/chandelier chandelier.go
	strip bin/chandelier

clean:
	rm bin/* -f