14 lines
295 B
Makefile
14 lines
295 B
Makefile
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
|