File: Makefile.am

package info (click to toggle)
brlaser 3-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 228 kB
  • ctags: 137
  • sloc: cpp: 1,270; makefile: 46; sh: 12
file content (50 lines) | stat: -rw-r--r-- 831 bytes parent folder | download | duplicates (2)
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
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_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