1
0
mirror of https://github.com/pdewacht/brlaser synced 2024-12-28 00:08:21 +01:00
brlaser/Makefile.am

51 lines
825 B
Makefile
Raw Normal View History

2013-12-21 23:40:34 +01:00
ACLOCAL_AMFLAGS = -I m4
2014-02-04 22:07:40 +01:00
AM_CXXFLAGS = $(CUPS_CFLAGS)
TESTS = $(check_PROGRAMS)
2013-12-21 23:40:34 +01:00
2014-01-26 20:52:22 +01:00
2014-02-04 22:07:40 +01:00
dist_doc_DATA = README.md
2013-12-21 23:40:34 +01:00
drv_DATA = brlaser.drv
drvdir = $(CUPS_DATADIR)/drv
2014-02-04 22:07:40 +01:00
filter_PROGRAMS = src/rastertobrlaser
filterdir = $(CUPS_SERVERBIN)/filter
noinst_PROGRAMS = src/brdecode
2014-02-04 22:07:40 +01:00
check_PROGRAMS = \
test/test_lest \
test/test_line \
test/test_block
2014-02-04 22:07:40 +01:00
src_rastertobrlaser_SOURCES = \
2013-12-21 23:40:34 +01:00
src/main.cc \
src/debug.h \
src/debug.cc \
src/job.h \
src/job.cc \
2014-02-04 21:50:11 +01:00
src/block.h \
2013-12-21 23:40:34 +01:00
src/line.h \
src/line.cc
2014-02-04 22:07:40 +01:00
src_rastertobrlaser_LDADD = $(CUPS_LIBS)
2014-02-04 22:07:40 +01:00
src_brdecode_SOURCES = \
src/brdecode.cc
2014-02-04 21:51:34 +01:00
2014-02-04 22:07:40 +01:00
test_test_lest_SOURCES = \
2014-02-04 21:51:34 +01:00
test/test_lest.cc \
test/lest.h
2014-02-04 22:07:40 +01:00
test_test_line_SOURCES = \
2014-02-04 21:51:34 +01:00
test/test_line.cc \
src/line.h \
src/line.cc \
test/lest.h
2014-02-04 22:07:40 +01:00
test_test_block_SOURCES = \
2014-02-04 21:51:34 +01:00
test/test_block.cc \
src/block.h \
test/tempfile.h \
test/lest.h