mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
#
|
|
# UPX Makefile - needs GNU make 3.80 or better
|
|
#
|
|
|
|
SHELL = /bin/sh
|
|
.SUFFIXES:
|
|
MAKEFLAGS += -rR
|
|
override e = $($1) $(EXTRA_$1) $(upx_$1) $($(basename $(notdir $@)).$1)
|
|
|
|
srcdir ?= $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
|
|
ifneq ($(srcdir),./)
|
|
srcdir := $(shell echo '$(srcdir)' | sed 's,/*$$,,')
|
|
##$(info Info: using VPATH . $(srcdir))
|
|
VPATH := . $(srcdir)
|
|
endif
|
|
|
|
ifeq ($(CXX),)
|
|
CXX = g++
|
|
CXXFLAGS += -O2 -MMD
|
|
CXXFLAGS += -Wall -W -Wcast-align -Wcast-qual -Wpointer-arith -Wwrite-strings -Werror
|
|
endif
|
|
CPPFLAGS += $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES)
|
|
CXXLD ?= $(CXX)
|
|
|
|
exeext ?= .out
|
|
libext ?= .a
|
|
objext ?= .o
|
|
|
|
# we need UCL and zlib - you can set envvar UCLDIR
|
|
ifneq ($(wildcard $(UCLDIR)/include/ucl/ucl.h),)
|
|
INCLUDES += -I$(UCLDIR)/include
|
|
LIBS += $(addprefix -L,$(dir $(wildcard $(UCLDIR)/libucl$(libext) $(UCLDIR)/src/.libs/libucl$(libext))))
|
|
endif
|
|
LIBS += -lucl -lz
|
|
|
|
upx_SOURCES := $(wildcard $(srcdir)/*.cpp)
|
|
upx_OBJECTS := $(notdir $(upx_SOURCES:.cpp=$(objext)))
|
|
|
|
all: upx$(exeext)
|
|
|
|
upx$(exeext): $(upx_OBJECTS) $(upx_DEPENDENCIES)
|
|
$(strip $(CXXLD) $(call e,CPPFLAGS) $(call e,CXXFLAGS) $(call e,LDFLAGS) -o $@ $(upx_OBJECTS) $(call e,LDADD) $(call e,LIBS))
|
|
|
|
%.o : %.cpp
|
|
$(strip $(CXX) $(call e,CPPFLAGS) $(call e,CXXFLAGS) -o $@ -c $<)
|
|
|
|
mostlyclean clean distclean maintainer-clean:
|
|
rm -f *.d *.map *.o *.obj *.res upx.exe upx.out upx.ttp upx$(exeext)
|
|
|
|
-include *.d
|
|
.PHONY: all mostlyclean clean distclean maintainer-clean
|