diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-03-02 12:34:51 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-03-02 12:34:51 +0100 |
commit | 6178dfbbd612d15a46c7d2a439b2252d6d0a87ba (patch) | |
tree | 0abe2fef49ac4585cc3d0f43d88e6ca9be3bea7d /icepack/Makefile | |
parent | 0ac6a3545a17b860ed5a5bf6fcc8303418b25e5a (diff) | |
download | icestorm-6178dfbbd612d15a46c7d2a439b2252d6d0a87ba.tar.gz icestorm-6178dfbbd612d15a46c7d2a439b2252d6d0a87ba.tar.bz2 icestorm-6178dfbbd612d15a46c7d2a439b2252d6d0a87ba.zip |
Added Makefile support for "make STATIC=1"
Diffstat (limited to 'icepack/Makefile')
-rw-r--r-- | icepack/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/icepack/Makefile b/icepack/Makefile index 78701db..cfe48be 100644 --- a/icepack/Makefile +++ b/icepack/Makefile @@ -3,6 +3,10 @@ LDLIBS = -lm -lstdc++ CXXFLAGS = -MD -O0 -ggdb -Wall -std=c++11 -I/usr/local/include MXEGCC = /usr/local/src/mxe/usr/bin/i686-pc-mingw32-gcc +ifeq ($(STATIC),1) +LDFLAGS += -static +endif + all: icepack$(EXE) iceunpack$(EXE) icepack$(EXE): icepack.o |