xs/Makefile

78 lines
1.4 KiB
Makefile
Raw Normal View History

.PHONY: info clean common client server passwd subpkgs install uninstall
2018-04-04 15:51:03 +00:00
SUBPKGS = logger spinsult hkexnet herradurakex
TOOLS = hkexpasswd hkexsh hkexshd
SUBDIRS = $(LIBS) $(TOOLS)
2018-05-27 06:42:43 +00:00
INSTPREFIX = /usr/local
all: common client server passwd
2018-04-04 15:51:03 +00:00
clean:
2018-05-27 06:42:43 +00:00
go clean .
for d in $(SUBDIRS); do\
$(MAKE) -C $$d clean;\
done
2018-04-04 15:51:03 +00:00
subpkgs:
for d in $(SUBPKGS); do\
$(MAKE) -C $$d all;\
done
tools:
for d in $(TOOLS); do\
$(MAKE) -C $$d all;\
done
common:
2018-04-04 15:51:03 +00:00
go install .
client: common
2018-05-27 06:42:43 +00:00
$(MAKE) -C hkexsh
2018-04-04 15:51:03 +00:00
ifeq ($(MSYSTEM),)
ifneq ($(GOOS),windows)
server: common
$(MAKE) -C hkexshd
else
echo "Cross-build of hkexshd server for Windows not yet supported"
endif
2018-05-26 22:54:54 +00:00
else
server: common
echo "hkexshd server not (yet) supported on Windows"
2018-05-26 22:54:54 +00:00
endif
2018-04-04 15:51:03 +00:00
passwd: common
2018-05-27 06:42:43 +00:00
$(MAKE) -C hkexpasswd
2018-04-04 15:51:03 +00:00
install:
cp hkexsh/hkexsh $(INSTPREFIX)/bin
ifeq ($(MSYSTEM),)
ifneq ($(GOOS),windows)
cp hkexshd/hkexshd hkexpasswd/hkexpasswd $(INSTPREFIX)/sbin
else
mv $(INSTPREFIX)/bin/hkexsh $(INSTPREFIX)/bin/_hkexsh
cp hkexsh/mintty_wrapper.sh $(INSTPREFIX)/bin/hkexsh
echo "Cross-build of hkexshd server for Windows not yet supported"
endif
else
echo "Cross-build of hkexshd server for Windows not yet supported"
endif
cd $(INSTPREFIX)/bin && ln -s hkexsh hkexcp && cd -
uninstall:
rm -f $(INSTPREFIX)/bin/hkexsh $(INSTPREFIX)/bin/hkexcp $(INSTPREFIX)/bin/_hkexsh
ifeq ($(MSYSTEM),)
ifneq ($(GOOS),windows)
rm -f $(INSTPREFIX)/sbin/hkexshd $(INSTPREFIX)/sbin/hkexpasswd
else
endif
else
endif