Grr, added new Makefiles

Signed-off-by: Russ Magee <rmagee@gmail.com>
This commit is contained in:
Russ Magee 2018-05-26 23:44:13 -07:00
parent ec37afc4d8
commit 0ba85e2ee8
3 changed files with 30 additions and 0 deletions

10
hkexpasswd/Makefile Normal file
View 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
View 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
View File

@ -0,0 +1,10 @@
.PHONY: clean all
EXE = $(notdir $(shell pwd))
all:
go build .
clean:
$(RM) $(EXE) $(EXE).exe