mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Grr, added new Makefiles
This commit is contained in:
parent
ec37afc4d8
commit
4e28b8faf9
3 changed files with 30 additions and 0 deletions
10
hkexpasswd/Makefile
Normal file
10
hkexpasswd/Makefile
Normal file
|
@ -0,0 +1,10 @@
|
|||
.PHONY: clean all
|
||||
|
||||
EXE = $(notdir $(shell pwd))
|
||||
|
||||
all:
|
||||
go build .
|
||||
|
||||
clean:
|
||||
$(RM) $(EXE) $(EXE).exe
|
||||
|
10
hkexsh/Makefile
Normal file
10
hkexsh/Makefile
Normal file
|
@ -0,0 +1,10 @@
|
|||
.PHONY: clean all
|
||||
|
||||
EXE = $(notdir $(shell pwd))
|
||||
|
||||
all:
|
||||
go build .
|
||||
|
||||
clean:
|
||||
$(RM) $(EXE) $(EXE).exe
|
||||
|
10
hkexshd/Makefile
Normal file
10
hkexshd/Makefile
Normal file
|
@ -0,0 +1,10 @@
|
|||
.PHONY: clean all
|
||||
|
||||
EXE = $(notdir $(shell pwd))
|
||||
|
||||
all:
|
||||
go build .
|
||||
|
||||
clean:
|
||||
$(RM) $(EXE) $(EXE).exe
|
||||
|
Loading…
Reference in a new issue