summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: da77c9df16519bd0290c60523bfb17585e66512f (plain)
1
2
3
4
5
6
7
8
9
10
all: lz4demo64 lz4demo32 

lz4demo64: lz4.c lz4.h bench.c lz4demo.c  
	gcc      -g -O3 -I. -std=c99 -Wall -W -Wno-implicit-function-declaration lz4.c bench.c lz4demo.c -o lz4demo64.exe

lz4demo32: lz4.c lz4.h bench.c lz4demo.c
	gcc -m32 -g -O3 -I. -std=c99 -Wall -W -Wno-implicit-function-declaration lz4.c bench.c lz4demo.c -o lz4demo32.exe

clean:
	rm -f core *.o lz4demo32.exe lz4demo64.exe