002a93473d
Added : fullbench : can select compression tests or decompression tests Removed extern inline, for compatibility with GNU89, as reported by Maciej Adamczyk lz4.c : made forceinline more explicit Decompression : corrected corner case behaviors (inputSize == 0 and outputSize == 0), thanks Adrien for detailed suggestions Makefile : Removed -march=native parameter, due to incompatibility with some GCC versions git-svn-id: https://lz4.googlecode.com/svn/trunk@98 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
32 lines
717 B
Makefile
32 lines
717 B
Makefile
CC=gcc
|
|
CFLAGS=-I. -std=c99 -Wall -W -Wundef -Wno-implicit-function-declaration
|
|
|
|
OS := $(shell uname)
|
|
ifeq ($(OS),Linux)
|
|
EXT =
|
|
else
|
|
EXT =.exe
|
|
endif
|
|
|
|
default: lz4c
|
|
|
|
all: lz4c lz4cs lz4c32 fuzzer fullbench
|
|
|
|
lz4c: lz4.c lz4hc.c bench.c xxhash.c lz4c.c
|
|
$(CC) -O3 $(CFLAGS) $^ -o $@$(EXT)
|
|
|
|
lz4cs: lz4.c lz4hc.c bench.c xxhash.c lz4c.c
|
|
$(CC) -Os $(CFLAGS) $^ -o $@$(EXT)
|
|
|
|
lz4c32: lz4.c lz4hc.c bench.c xxhash.c lz4c.c
|
|
$(CC) -m32 -O3 $(CFLAGS) $^ -o $@$(EXT)
|
|
|
|
fuzzer : lz4.c lz4hc.c fuzzer.c
|
|
$(CC) -O3 $(CFLAGS) $^ -o $@$(EXT)
|
|
|
|
fullbench : lz4.c lz4hc.c xxhash.c fullbench.c
|
|
$(CC) -O3 $(CFLAGS) $^ -o $@$(EXT)
|
|
|
|
clean:
|
|
rm -f core *.o lz4c$(EXT) lz4cs$(EXT) lz4c32$(EXT) fuzzer$(EXT) fullbench$(EXT)
|