mirror of
https://github.com/upx/upx.git
synced 2024-11-27 22:50:32 +00:00
51 lines
1.0 KiB
Makefile
51 lines
1.0 KiB
Makefile
#
|
|
# UPX toplevel Makefile - needs GNU make 3.81 or better
|
|
#
|
|
# Copyright (C) 1996-2009 Markus Franz Xaver Johannes Oberhumer
|
|
#
|
|
|
|
MAKEFLAGS += -rR
|
|
.SUFFIXES:
|
|
export SHELL = /bin/sh
|
|
|
|
ifneq ($(findstring $(firstword $(MAKE_VERSION)),3.77 3.78 3.78.1 3.79 3.79.1 3.80),)
|
|
$(error GNU make 3.81 or better is required)
|
|
endif
|
|
|
|
srcdir = .
|
|
top_srcdir = .
|
|
include $(wildcard $(top_srcdir)/Makevars.global ./Makevars.local)
|
|
|
|
|
|
# info: src/stub needs 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
|
|
|
|
|
|
default:
|
|
@echo "UPX info: please choose a target for 'make'"
|
|
|
|
all mostlyclean clean distclean maintainer-clean:
|
|
ifeq ($(BUILD_STUB),1)
|
|
$(MAKE) -C src/stub $@
|
|
endif
|
|
$(MAKE) -C src $@
|
|
$(MAKE) -C doc $@
|
|
|
|
|
|
ifneq ($(wildcard .hg/.),)
|
|
# automatically generate ChangeLog from local Mercurial repo
|
|
ChangeLog:
|
|
hg log --style=changelog > $@
|
|
.PHONY: ChangeLog
|
|
endif
|
|
|
|
|
|
.PHONY: default all mostlyclean clean distclean maintainer-clean
|
|
|