diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2019-04-23 21:18:11 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2019-04-23 21:18:11 +0000 |
commit | 7937e862554ae4cc8722dbf66f53c3da2259e0c5 (patch) | |
tree | 55edbb1f8bcd9e1fd727674535214dd64f05a6a3 /tests/Makefile | |
parent | f665291e6cb651cb084bf9450a071ae0fd494782 (diff) | |
download | lz4-7937e862554ae4cc8722dbf66f53c3da2259e0c5.tar.gz lz4-7937e862554ae4cc8722dbf66f53c3da2259e0c5.tar.bz2 lz4-7937e862554ae4cc8722dbf66f53c3da2259e0c5.zip |
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/Makefile | 2 |
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 |