Grr, added new Makefiles

This commit is contained in:
Russ Magee 2018-05-26 23:44:13 -07:00
parent ec37afc4d8
commit 4e28b8faf9
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