You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
877 B
51 lines
877 B
ACLOCAL_AMFLAGS = -I m4 |
|
AM_CXXFLAGS = $(CUPS_CFLAGS) |
|
TESTS = $(check_PROGRAMS) |
|
|
|
|
|
dist_doc_DATA = README.md |
|
|
|
drv_DATA = brlaser.drv |
|
drvdir = $(CUPS_DATADIR)/drv |
|
|
|
filter_PROGRAMS = src/rastertobrlaser |
|
filterdir = $(CUPS_SERVERBIN)/filter |
|
|
|
noinst_PROGRAMS = src/brdecode |
|
|
|
check_PROGRAMS = \ |
|
test/test_lest \ |
|
test/test_line \ |
|
test/test_block |
|
|
|
|
|
src_rastertobrlaser_SOURCES = \ |
|
src/main.cc \ |
|
src/debug.h \ |
|
src/debug.cc \ |
|
src/job.h \ |
|
src/job.cc \ |
|
src/block.h \ |
|
src/line.h \ |
|
src/line.cc |
|
src_rastertobrlaser_LDADD = $(CUPS_LIBS) |
|
src_rastertobrlaser_LDFLAGS = $(CUPS_LDFLAGS) |
|
|
|
src_brdecode_SOURCES = \ |
|
src/brdecode.cc |
|
|
|
test_test_lest_SOURCES = \ |
|
test/test_lest.cc \ |
|
test/lest.hpp |
|
|
|
test_test_line_SOURCES = \ |
|
test/test_line.cc \ |
|
src/line.h \ |
|
src/line.cc \ |
|
test/lest.hpp |
|
|
|
test_test_block_SOURCES = \ |
|
test/test_block.cc \ |
|
src/block.h \ |
|
test/tempfile.h \ |
|
test/lest.hpp
|
|
|