File: Makefile.am

package info (click to toggle)
libwibble 0.1.19
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 832 kB
  • ctags: 1,940
  • sloc: cpp: 9,798; makefile: 163; perl: 84; sh: 11
file content (141 lines) | stat: -rw-r--r-- 2,922 bytes parent folder | download
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
SUBDIRS = .

INCLUDES = -I$(top_srcdir)

if WIBBLE_STANDALONE
INCLUDES += -DWIBBLE_COMPILE_TESTSUITE -DTEST_DIR=\"`pwd`/$(top_builddir)/wibble/tests/work/\"

wibbledir = $(includedir)/wibble
wibblecommandlinedir = $(includedir)/wibble/commandline
wibblelogdir = $(includedir)/wibble/log
wibblesysdir = $(includedir)/wibble/sys
wibbletestdir = $(includedir)/wibble/tests
wibbletextdir = $(includedir)/wibble/text
wibblegrcaldir = $(includedir)/wibble/grcal
wibblestreamdir = $(includedir)/wibble/stream

wibble_HEADERS = \
    amorph.h \
    cast.h \
    consumer.h \
    empty.h \
    exception.h \
    exception.tcc \
    fallback.h \
    iterator.h \
    maybe.h \
    mixin.h \
    operators.h \
    range.h \
    regexp.h \
    sfinae.h \
    singleton.h \
    string.h \
    tests.h

wibblesys_HEADERS = \
    sys/thread.h \
    sys/process.h \
    sys/netbuffer.h \
    sys/mutex.h \
    sys/fs.test.h \
    sys/buffer.h \
    sys/mmap.h \
    sys/childprocess.h \
    sys/exec.h \
    sys/fs.h

wibblelog_HEADERS = \
    log/stream.h \
    log/null.h \
    log/syslog.h \
    log/ostream.h \
    log/file.h

wibblecommandline_HEADERS = \
    commandline/core.h \
    commandline/doc.h \
    commandline/engine.h \
    commandline/options.h \
    commandline/parser.h

wibbletest_HEADERS = \
    tests/tut-prereq.h \
    tests/tut_reporter.h \
    tests/tut-wibble.h \
    tests/tut.h \
    tests/tut_restartable.h

wibbletext_HEADERS = \
    text/wordwrap.h

wibblegrcal_HEADERS = \
    grcal/grcal.h

wibblestream_HEADERS = \
    stream/posix.h

lib_LTLIBRARIES = libwibble.la

else
noinst_LTLIBRARIES = libwibble.la
endif

libwibble_la_SOURCES = \
    exception.cpp \
    regexp.cpp \
    string.cpp \
    tests.cpp \
    sys/fs.cpp \
    sys/buffer.cpp \
    sys/mmap.cpp \
    sys/process.cpp \
    sys/childprocess.cpp \
    sys/mutex.cpp \
    sys/exec.cpp \
    sys/thread.cpp \
    log/file.cpp \
    log/stream.cpp \
    log/ostream.cpp \
    log/syslog.cpp \
    commandline/core.cpp \
    commandline/options.cpp \
    commandline/doc.cpp \
    commandline/parser.cpp \
    commandline/engine.cpp \
    text/wordwrap.cpp \
    grcal/grcal.cpp

#libwibble_la_LIBADD = 
#libwibble_la_LDFLAGS = -no-undefined

EXTRA_DIST = README.repo libwibble.m4 libwibble.pc.in \
    amorph.test.h \
    consumer.test.h \
    empty.test.h \
    exception.test.h \
    log.test.h \
    mixin.test.h \
    operators.test.h \
    range.test.h \
    regexp.test.h \
    singleton.test.h \
    string.test.h \
    commandline/core.test.h \
    commandline/options.test.h \
    commandline/doc.test.h \
    commandline/engine.test.h \
    test.h \
    test-main.h \
    test-runner.h \
    test.test.h \
    sys/childprocess.test.h \
    sys/netbuffer.test.h \
    sys/buffer.test.h \
    sys/mmap.test.h \
    sys/process.test.h \
    sys/thread.test.h \
    grcal/grcal.test.h \
    stream/posix.test.h

# vim:set ts=4 sw=4: