Hash :
f9f60349
Author :
Date :
2013-08-15T10:28:54
Reed-Solomon code routine has been completely rewritten.
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
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 test_monkey test_mask test_mmask \
create_frame_pattern create_mqr_frame_pattern \
$(sdlPROGRAMS)
noinst_LIBRARIES = libdecoder.a
DECODER_LIBS = libdecoder.a $(LIBICONV)
noinst_HEADERS = common.h rscode.h
if HAVE_LIBPTHREAD
noinst_PROGRAMS += pthread_qrencode
endif
EXTRA_DIST = frame
libdecoder_a_SOURCES = decoder.c decoder.h
test_qrinput_SOURCES = test_qrinput.c
test_qrinput_LDADD = ../libqrencode.la $(DECODER_LIBS)
test_bitstream_SOURCES = test_bitstream.c
test_bitstream_LDADD = ../libqrencode.la
test_estimatebit_SOURCES = test_estimatebit.c
test_estimatebit_LDADD = ../libqrencode.la
test_qrspec_SOURCES = test_qrspec.c
test_qrspec_LDADD = ../libqrencode.la $(DECODER_LIBS)
test_mqrspec_SOURCES = test_mqrspec.c
test_mqrspec_LDADD = ../libqrencode.la $(DECODER_LIBS)
test_rs_SOURCES = test_rs.c rscode.c
test_rs_LDADD = ../libqrencode.la
test_qrencode_SOURCES = test_qrencode.c
test_qrencode_LDADD = ../libqrencode.la $(DECODER_LIBS)
test_split_SOURCES = test_split.c
test_split_LDADD = ../libqrencode.la
test_monkey_SOURCES = test_monkey.c
test_monkey_LDADD = ../libqrencode.la $(DECODER_LIBS)
test_mask_SOURCES = test_mask.c
test_mask_LDADD = ../libqrencode.la $(DECODER_LIBS)
test_mmask_SOURCES = test_mmask.c
test_mmask_LDADD = ../libqrencode.la $(DECODER_LIBS)
prof_qrencode_SOURCES = prof_qrencode.c
prof_qrencode_LDADD = ../libqrencode.la
pthread_qrencode_SOURCES = pthread_qrencode.c
pthread_qrencode_LDADD = ../libqrencode.la $(LIBPTHREAD)
create_frame_pattern_SOURCES = create_frame_pattern.c
create_frame_pattern_CFLAGS = $(png_CFLAGS)
create_frame_pattern_LDADD = ../libqrencode.la $(png_LIBS)
create_mqr_frame_pattern_SOURCES = create_mqr_frame_pattern.c
create_mqr_frame_pattern_CFLAGS = $(png_CFLAGS)
create_mqr_frame_pattern_LDADD = ../libqrencode.la $(png_LIBS)
if HAVE_SDL
view_qrcode_SOURCES = view_qrcode.c
view_qrcode_CFLAGS= $(SDL_CFLAGS)
view_qrcode_LDADD = ../libqrencode.la $(SDL_LIBS)
endif