summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-06-27 09:30:31 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-06-27 09:30:31 (GMT)
commitc04df7e1b5fb1e4ffa796d2b3d2dea208f7116da (patch)
treebb8a51090d7fde0abfd7714a0a68145c17cb8db9 /Makefile
parentcdef03389559306cee1dc31134f47c0748583d98 (diff)
downloadlz4-c04df7e1b5fb1e4ffa796d2b3d2dea208f7116da.zip
lz4-c04df7e1b5fb1e4ffa796d2b3d2dea208f7116da.tar.gz
lz4-c04df7e1b5fb1e4ffa796d2b3d2dea208f7116da.tar.bz2
Changed : static library is no longer compiled with -fPIC by default (this option can still be added on the command line) See #53
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 863c866..2b2f269 100644
--- a/Makefile
+++ b/Makefile
@@ -58,12 +58,16 @@ VOID = /dev/null
endif
+.PHONY: default all lib lz4programs clean
+
default: lz4programs
-all:
- @cd $(LZ4DIR); $(MAKE) -e all
+all: lib
@cd $(PRGDIR); $(MAKE) -e all
+lib:
+ @cd $(LZ4DIR); $(MAKE) -e all
+
lz4programs:
@cd $(PRGDIR); $(MAKE) -e