diff options
author | Kouhei Sutou <kou@clear-code.com> | 2016-09-23 01:43:12 (GMT) |
---|---|---|
committer | Kouhei Sutou <kou@clear-code.com> | 2016-09-23 01:43:12 (GMT) |
commit | 829941e5a81081787217ae1a28794e546812b0b4 (patch) | |
tree | 80c1947dbf1f74c6ee40f8aee373ad46f2f90f81 | |
parent | 1ca408105d7774bd1f379b9ec695ac7579cd456c (diff) | |
download | lz4-829941e5a81081787217ae1a28794e546812b0b4.zip lz4-829941e5a81081787217ae1a28794e546812b0b4.tar.gz lz4-829941e5a81081787217ae1a28794e546812b0b4.tar.bz2 |
Add missing $(EXT) to lz4 program name
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -41,8 +41,10 @@ LZ4DIR = lib # Define nul output ifneq (,$(filter Windows%,$(OS))) +EXT = .exe VOID = nul else +EXT = VOID = /dev/null endif @@ -58,14 +60,14 @@ lib: lz4: @$(MAKE) -C $(PRGDIR) - @cp $(PRGDIR)/lz4 . + @cp $(PRGDIR)/lz4$(EXT) . clean: @$(MAKE) -C $(PRGDIR) $@ > $(VOID) @$(MAKE) -C $(LZ4DIR) $@ > $(VOID) @$(MAKE) -C examples $@ > $(VOID) @$(MAKE) -C versionsTest $@ > $(VOID) - @$(RM) lz4 + @$(RM) lz4$(EXT) @echo Cleaning completed |