author | Michael Krelin <hacker@klever.net> | 2008-01-20 21:08:05 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-01-20 21:08:05 (UTC) |
commit | 9bfb6fadf71c46bf4cb5adabba0c96c32e84c1bc (patch) (unidiff) | |
tree | 702473142242e80538c4801cc379ec98fba199dd /include/Makefile.am | |
parent | 395a126cbf59b7a50f44da3096b68bab412ab33d (diff) | |
download | libopkele-9bfb6fadf71c46bf4cb5adabba0c96c32e84c1bc.zip libopkele-9bfb6fadf71c46bf4cb5adabba0c96c32e84c1bc.tar.gz libopkele-9bfb6fadf71c46bf4cb5adabba0c96c32e84c1bc.tar.bz2 |
the whole library rewritten
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/Makefile.am | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 51dcea1..50fcb62 100644 --- a/include/Makefile.am +++ b/include/Makefile.am | |||
@@ -1,21 +1,32 @@ | |||
1 | nobase_include_HEADERS = \ | 1 | NODIST_HEADERS_ = \ |
2 | opkele/acconfig.h \ | 2 | opkele/acconfig.h \ |
3 | opkele/tr1-mem.h | ||
4 | |||
5 | nobase_include_HEADERS = \ | ||
3 | opkele/opkele-config.h \ | 6 | opkele/opkele-config.h \ |
4 | opkele/types.h \ | 7 | opkele/types.h \ |
5 | opkele/association.h \ | 8 | opkele/association.h \ |
6 | opkele/exception.h \ | 9 | opkele/exception.h \ |
7 | opkele/server.h \ | 10 | opkele/server.h \ |
8 | opkele/consumer.h \ | 11 | opkele/consumer.h \ |
9 | opkele/extension.h \ | 12 | opkele/extension.h \ |
10 | opkele/sreg.h \ | 13 | opkele/sreg.h \ |
11 | opkele/extension_chain.h \ | 14 | opkele/extension_chain.h \ |
12 | opkele/xconsumer.h \ | 15 | opkele/xconsumer.h \ |
13 | opkele/xserver.h \ | 16 | opkele/xserver.h \ |
14 | opkele/discovery.h \ | ||
15 | opkele/uris.h \ | 17 | opkele/uris.h \ |
16 | opkele/tr1-mem.h | 18 | opkele/tr1-mem.h \ |
17 | EXTRA_DIST = \ | 19 | opkele/basic_rp.h \ |
20 | opkele/prequeue_rp.h \ | ||
21 | opkele/iterator.h \ | ||
22 | ${NODIST_HEADERS_} | ||
23 | |||
24 | noinst_HEADERS = \ | ||
18 | opkele/data.h \ | 25 | opkele/data.h \ |
19 | opkele/curl.h opkele/expat.h opkele/tidy.h \ | 26 | opkele/curl.h opkele/expat.h opkele/tidy.h \ |
20 | opkele/util.h \ | 27 | opkele/util.h \ |
21 | opkele/debug.h | 28 | opkele/debug.h \ |
29 | opkele/discovery.h | ||
30 | |||
31 | dist-hook: | ||
32 | rm -f $(addprefix ${distdir}/,${NODIST_HEADERS_}) | ||