mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
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
|
||
|
|