mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
Updated comments.
This commit is contained in:
parent
914cd7221e
commit
a41bb52014
|
@ -1,9 +1,11 @@
|
|||
#
|
||||
# UPX stub Makefile (needs GNU make 3.81 or better)
|
||||
# UPX stub Makefile - needs GNU make 3.81 or better
|
||||
#
|
||||
# see http://upx.sourceforge.net/download/tools/
|
||||
# for required build tools
|
||||
#
|
||||
# also please read README.SRC
|
||||
#
|
||||
|
||||
MAKEFLAGS += -rR
|
||||
.SUFFIXES:
|
||||
|
@ -12,6 +14,11 @@ export SHELL = /bin/sh
|
|||
# GNU make 3.81
|
||||
.SECONDEXPANSION:
|
||||
|
||||
# update $PATH for our special stub build tools
|
||||
ifneq ($(wildcard $(HOME)/local/bin/bin-upx),)
|
||||
export PATH := $(HOME)/local/bin/bin-upx:$(PATH)
|
||||
endif
|
||||
|
||||
|
||||
# /***********************************************************************
|
||||
# //
|
||||
|
@ -95,11 +102,6 @@ override T = $(basename $(notdir $@))
|
|||
# // setup toolchain globals
|
||||
# ************************************************************************/
|
||||
|
||||
# update path for our special stub build tools
|
||||
ifneq ($(wildcard $(HOME)/local/bin/bin-upx),)
|
||||
export PATH := $(HOME)/local/bin/bin-upx:$(PATH)
|
||||
endif
|
||||
|
||||
# default settings for $(tc_list)
|
||||
tc.default.bin2h = python $(srcdir)/scripts/bin2h.py
|
||||
tc.default.brandelf = perl -w $(srcdir)/scripts/brandelf.pl
|
||||
|
|
Loading…
Reference in New Issue
Block a user