1
0
mirror of https://github.com/upx/upx.git synced 2025-08-07 22:46:51 +08:00
Files
upx/Makefile

48 lines
932 B
Makefile
Raw Normal View History

2006-08-29 23:08:26 +02:00
#
# UPX toplevel Makefile - needs GNU make 3.80 or better
#
2000-05-19 16:04:55 +00:00
MAKEFLAGS += -rR
.SUFFIXES:
export SHELL = /bin/sh
srcdir = .
top_srcdir = .
2007-01-31 05:53:38 +01:00
-include $(top_srcdir)/Makevars.global ./Makevars.local
2006-06-17 18:54:11 +02:00
# info: src/stub needs GNU make 3.81 and special build tools
BUILD_STUB = 0
ifneq ($(wildcard $(HOME)/local/bin/bin-upx/.),)
BUILD_STUB = 1
endif
ifneq ($(wildcard $(HOME)/bin/bin-upx/.),)
BUILD_STUB = 1
endif
ifneq ($(findstring $(firstword $(MAKE_VERSION)),3.79 3.79.1 3.80),)
BUILD_STUB = 0
endif
default:
@echo "UPX info: please choose a target for 'make'"
all mostlyclean clean distclean maintainer-clean:
2006-06-17 18:54:11 +02:00
ifeq ($(BUILD_STUB),1)
$(MAKE) -C src/stub $@
endif
2000-05-19 16:04:55 +00:00
$(MAKE) -C src $@
$(MAKE) -C doc $@
2007-01-31 05:53:38 +01:00
2006-06-17 18:54:11 +02:00
ifneq ($(wildcard .hg/data/.),)
2007-01-31 05:53:38 +01:00
# automatically generate ChangeLog from local Mercurial repo
ChangeLog:
hg log --style=changelog > $@
2007-01-31 05:53:38 +01:00
.PHONY: ChangeLog
endif
.PHONY: default all mostlyclean clean distclean maintainer-clean
2000-05-19 16:04:55 +00:00