summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2016-08-20 21:49:36 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2016-08-20 21:49:36 (GMT)
commit182645ee0f3af69622a00ac463abdabcde158d36 (patch)
treeeb77ec146d1d6db1b97a0f51666c4a8ea658a6d6 /Makefile
parent0214638eb7de74a19a7e91c5751ae2e535f7ea15 (diff)
downloadlz4-182645ee0f3af69622a00ac463abdabcde158d36.zip
lz4-182645ee0f3af69622a00ac463abdabcde158d36.tar.gz
lz4-182645ee0f3af69622a00ac463abdabcde158d36.tar.bz2
lz4 as phony target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 3ebf090..079be73 100644
--- a/Makefile
+++ b/Makefile
@@ -51,18 +51,18 @@ VOID = /dev/null
endif
-.PHONY: default all lib lz4programs clean test versionsTest examples
+.PHONY: default all lib lz4 clean test versionsTest examples
-default: lz4programs
+default: lz4
-all: lib lz4programs
+all: lib lz4
lib:
@$(MAKE) -C $(LZ4DIR) all
-lz4programs:
+lz4:
@$(MAKE) -C $(PRGDIR)
- cp $(PRGDIR)/lz4 .
+ @cp $(PRGDIR)/lz4 .
clean:
@$(MAKE) -C $(PRGDIR) $@ > $(VOID)