1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Allow ~/bin/bin-upx in addition to ~/local/bin/bin-upx.

This commit is contained in:
Markus F.X.J. Oberhumer 2006-06-16 14:11:11 +02:00
parent b5053d889e
commit b8e3c0ceb4

View File

@ -15,6 +15,11 @@ all mostlyclean clean distclean maintainer-clean:
ifneq ($(wildcard $(HOME)/local/bin/bin-upx),)
# this needs special build tools
$(MAKE) -C src/stub $@
else
ifneq ($(wildcard $(HOME)/bin/bin-upx),)
# this needs special build tools
$(MAKE) -C src/stub $@
endif
endif
$(MAKE) -C src $@
$(MAKE) -C doc $@