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

Updated comments.

This commit is contained in:
Markus F.X.J. Oberhumer 2006-06-15 18:03:24 +02:00
parent 914cd7221e
commit a41bb52014

View File

@ -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/ # see http://upx.sourceforge.net/download/tools/
# for required build tools # for required build tools
# #
# also please read README.SRC
#
MAKEFLAGS += -rR MAKEFLAGS += -rR
.SUFFIXES: .SUFFIXES:
@ -12,6 +14,11 @@ export SHELL = /bin/sh
# GNU make 3.81 # GNU make 3.81
.SECONDEXPANSION: .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 # // 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) # default settings for $(tc_list)
tc.default.bin2h = python $(srcdir)/scripts/bin2h.py tc.default.bin2h = python $(srcdir)/scripts/bin2h.py
tc.default.brandelf = perl -w $(srcdir)/scripts/brandelf.pl tc.default.brandelf = perl -w $(srcdir)/scripts/brandelf.pl