Hash :
b429a37c
Author :
Date :
2007-12-13T11:33:34
- Case-sensitive mode has been added to QRcode_encodeString(). - "-8" option has been added to qrenc.c. - "-c" now encodes in improved case-sensitive mode. - test_split*() have been moved to test_split.c.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
if HAVE_SDL
sdlPROGRAMS = view_qrcode
endif
noinst_PROGRAMS = test_qrinput test_bitstream test_estimatebit \
test_qrspec test_rs test_qrencode prof_qrencode \
test_mqrspec test_split\
$(sdlPROGRAMS)
test_qrinput_SOURCES = test_qrinput.c common.h
test_qrinput_LDADD = ../libqrencode.la
test_bitstream_SOURCES = test_bitstream.c common.h
test_bitstream_LDADD = ../bitstream.o
test_estimatebit_SOURCES = test_estimatebit.c common.h
test_estimatebit_LDADD = ../libqrencode.la
test_qrspec_SOURCES = test_qrspec.c common.h
test_qrspec_LDADD = ../qrspec.o
test_mqrspec_SOURCES = test_mqrspec.c common.h
test_mqrspec_LDADD = ../mqrspec.o
test_rs_SOURCES = test_rs.c common.h
test_rs_LDADD = ../libqrencode.la
test_qrencode_SOURCES = test_qrencode.c common.h
test_qrencode_LDADD = ../libqrencode.la
test_split_SOURCES = test_split.c common.h
test_split_LDADD = ../libqrencode.la
prof_qrencode_SOURCES = prof_qrencode.c
prof_qrencode_LDADD = ../libqrencode.la
if HAVE_SDL
view_qrcode_SOURCES = view_qrcode.c common.h
view_qrcode_CFLAGS= $(SDL_CFLAGS)
view_qrcode_LDADD = ../libqrencode.la $(SDL_LIBS)
endif