summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2019-04-23 21:18:11 (GMT)
committerDmitry V. Levin <ldv@altlinux.org>2019-04-23 21:18:11 (GMT)
commit7937e862554ae4cc8722dbf66f53c3da2259e0c5 (patch)
tree55edbb1f8bcd9e1fd727674535214dd64f05a6a3 /tests/Makefile
parentf665291e6cb651cb084bf9450a071ae0fd494782 (diff)
downloadlz4-7937e862554ae4cc8722dbf66f53c3da2259e0c5.zip
lz4-7937e862554ae4cc8722dbf66f53c3da2259e0c5.tar.gz
lz4-7937e862554ae4cc8722dbf66f53c3da2259e0c5.tar.bz2
test-amalgamation: fix the list of prerequisites
Add $(LZ4DIR)/lz4frame.c to the list of prerequisites as the rule uses that file. Fixes: b192c86b ("[amalgamation] lz4frame.c")
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 67514e4..bcaf603 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -157,7 +157,7 @@ test32: CFLAGS+=-m32
test32: test
.PHONY: test-amalgamation
-test-amalgamation: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c
+test-amalgamation: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c $(LZ4DIR)/lz4frame.c
cat $(LZ4DIR)/lz4.c > lz4_all.c
cat $(LZ4DIR)/lz4hc.c >> lz4_all.c
cat $(LZ4DIR)/lz4frame.c >> lz4_all.c