mirror of https://gogs.blitter.com/RLabs/xs
11 lines
100 B
Makefile
11 lines
100 B
Makefile
|
.PHONY: clean all
|
||
|
|
||
|
EXE = $(notdir $(shell pwd))
|
||
|
|
||
|
all:
|
||
|
go build .
|
||
|
|
||
|
clean:
|
||
|
$(RM) $(EXE) $(EXE).exe
|
||
|
|