mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
2f83d488d6
Signed-off-by: Russ Magee <rmagee@gmail.com>
10 lines
100 B
Makefile
10 lines
100 B
Makefile
.PHONY: clean all
|
|
|
|
EXE = $(notdir $(shell pwd))
|
|
|
|
all:
|
|
go build .
|
|
|
|
clean:
|
|
$(RM) $(EXE) $(EXE).exe
|
|
|