~ubuntu-branches/ubuntu/raring/lurker/raring

« back to all changes in this revision

Viewing changes to index/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Meurer
  • Date: 2004-09-26 16:27:51 UTC
  • Revision ID: james.westby@ubuntu.com-20040926162751-z1ohcjltv7ojtg6z
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
EXTRA_DIST = lurker-drop-rlimit.cpp lurker-regenerate \
 
2
             lurker-index.sgml lurker-list.sgml \
 
3
             lurker-params.sgml lurker-search.sgml \
 
4
             lurker-regenerate.sgml
 
5
 
 
6
bin_PROGRAMS = lurker-index lurker-list lurker-params lurker-search
 
7
 
 
8
AM_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/libesort
 
9
LDADD = ../common/libcommon.a ../libesort/libesort.a
 
10
 
 
11
lurker_index_SOURCES = Index.cpp main.cpp getdate.cpp Index.h getdate.h
 
12
lurker_list_SOURCES = list.cpp
 
13
lurker_params_SOURCES = params.cpp
 
14
lurker_search_SOURCES = search.cpp
 
15
 
 
16
dist_man_MANS = lurker-index.1 lurker-list.1 lurker-params.1 \
 
17
                lurker-search.1 lurker-regenerate.1
 
18
 
 
19
install-data-local:
 
20
        $(mkinstalldirs) $(DESTDIR)$(vardir)
 
21
 
 
22
if MAINTAINER_MODE
 
23
lurker-index.1: lurker-index.sgml
 
24
        docbook-to-man $< > $@
 
25
lurker-list.1: lurker-list.sgml
 
26
        docbook-to-man $< > $@
 
27
lurker-params.1: lurker-params.sgml
 
28
        docbook-to-man $< > $@
 
29
lurker-search.1: lurker-search.sgml
 
30
        docbook-to-man $< > $@
 
31
lurker-regenerate.1: lurker-regenerate.sgml
 
32
        docbook-to-man $< > $@
 
33
endif