mirror of
https://github.com/lz4/lz4.git
synced 2024-11-24 18:33:50 +08:00
cfbace25d7
Makefile : default produces native binary, all produce native & 32-bits binaries git-svn-id: https://lz4.googlecode.com/svn/trunk@70 650e7d94-2a16-8b24-b05c-7c0b3f6821cd
23 lines
618 B
Makefile
23 lines
618 B
Makefile
OS := $(shell uname)
|
|
|
|
ifeq ($(OS),Linux)
|
|
OUTPUT32 = lz4demo32
|
|
OUTPUT = lz4demo
|
|
else
|
|
OUTPUT32 = LZ4Demo32.exe
|
|
OUTPUT = LZ4Demo.exe
|
|
endif
|
|
|
|
default: lz4demo
|
|
|
|
all: lz4demo lz4demo32
|
|
|
|
lz4demo: lz4.c lz4.h lz4hc.c lz4hc.h bench.c lz4demo.c
|
|
gcc -O3 -I. -std=c99 -Wall -W -Wundef -Wno-implicit-function-declaration lz4hc.c lz4.c bench.c lz4demo.c -o $(OUTPUT)
|
|
|
|
lz4demo32: lz4.c lz4.h lz4hc.c lz4hc.h bench.c lz4demo.c
|
|
gcc -m32 -Os -march=native -I. -std=c99 -Wall -W -Wundef -Wno-implicit-function-declaration lz4hc.c lz4.c bench.c lz4demo.c -o $(OUTPUT32)
|
|
|
|
clean:
|
|
rm -f core *.o $(OUTPUT32) $(OUTPUT)
|