Merge branch 'master' of github.com:herumi/xbyak into auto_grow

This commit is contained in:
MITSUNARI Shigeo 2012-03-16 16:38:29 +09:00
commit 7056b38d36
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
/*
@author herumi
@date $Date: 2011/06/02 02:43:26 $
@date $Date: 2012/03/15 01:51:56 $
JPEG quantize sample
This program generates a quantization routine by using fast division algorithm in run-time.

View file

@ -15,13 +15,13 @@ CFLAGS_WARN=-Wall -Wextra -Wformat=2 -Wcast-qual -Wcast-align -Wwrite-strings -W
CFLAGS=-O2 -fomit-frame-pointer -Wall -fno-operator-names -I../ $(XBYAK_OPT) $(XBYAK_COPT) $(CFLAGS_WARN)
make_nm:
g++ $(CFLAGS) make_nm.cpp -o $@
$(CXX) $(CFLAGS) make_nm.cpp -o $@
normalize_prefix: normalize_prefix.cpp
g++ $(CFLAGS) normalize_prefix.cpp -o $@
$(CXX) $(CFLAGS) normalize_prefix.cpp -o $@
test_mmx: test_mmx.cpp
g++ $(CFLAGS) test_mmx.cpp -o $@ -lpthread
$(CXX) $(CFLAGS) test_mmx.cpp -o $@ -lpthread
jmp: jmp.cpp
g++ $(CFLAGS) jmp.cpp -o $@
$(CXX) $(CFLAGS) jmp.cpp -o $@
test: normalize_prefix jmp
./test_nm.sh