summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)