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:
parent
b5053d889e
commit
b8e3c0ceb4
5
Makefile
5
Makefile
|
@ -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 $@
|
||||
|
|
Loading…
Reference in New Issue
Block a user