Compress base.img using FastLZ library
This commit is contained in:
13
FastLZ/tests/Makefile
Normal file
13
FastLZ/tests/Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
CFLAGS?=-Wall -std=c90
|
||||
TEST_ROUNDTRIP?=./test_roundtrip
|
||||
|
||||
all: roundtrip
|
||||
|
||||
roundtrip: test_roundtrip
|
||||
$(TEST_ROUNDTRIP)
|
||||
|
||||
test_roundtrip: test_roundtrip.c ../fastlz.c refimpl.c
|
||||
$(CC) -o $(TEST_ROUNDTRIP) $(CFLAGS) -I.. test_roundtrip.c ../fastlz.c refimpl.c
|
||||
|
||||
clean :
|
||||
$(RM) $(TEST_ROUNDTRIP) *.o
|
||||
Reference in New Issue
Block a user