blob: fed44984b7f8393bffa9798785998344c40dbc27 (
plain)
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
|
###
### The NULL conduit is a neat programming example, but shouldn't be
### installed on user systems.
###
if include_malconduit
MAL_SUBDIR = malconduit
else
MAL_SUBDIR =
endif
SUBDIRS = \
abbrowserconduit \
docconduit \
knotes \
$(MAL_SUBDIR) \
memofileconduit \
notepadconduit \
popmail \
sysinfoconduit \
timeconduit \
vcalconduit
###
### Subdirs you might have for experimental purposes:
###
### null - a conduit that just logs a single message.
### $(PERL_SUBDIR) - fires off a perl interpreter in a thread.
### $(PYTHON_SUBDIR) - starts a python interpreter in a thread.
###
|