source: trunk/athena/bin/discuss/include/Makefile.in @ 24624

Revision 24624, 1.8 KB checked in by broder, 14 years ago (diff)
Try to make clear that discuss's info pages are for libss, not info(1).
Line 
1#
2# $Id: Makefile.in,v 1.1 1999-02-02 20:40:18 kcr Exp $
3#
4
5SHELL=/bin/sh
6VPATH=@srcdir@
7INSTALL=@INSTALL@
8INSTALL_PROGRAM=@INSTALL_PROGRAM@
9INSTALL_DATA=@INSTALL_DATA@
10MKDIR_P=@MKDIR_P@
11srcdir=@srcdir@
12top_srcdir=@top_srcdir@
13prefix=@prefix@
14exec_prefix=@exec_prefix@
15bindir=@bindir@
16sbindir=@sbindir@
17includedir=@includedir@
18
19datarootdir=@datarootdir@
20datadir=@datadir@
21ssinfodir=${datadir}/discuss/info
22
23LINKS=  usp/usp.h usp/usp_et.h rpc_et.h discuss/dsc_et.h usp.h usp_et.h \
24        discuss_err.h
25FILES=  ansi.h atom.h globals.h internal.h mit-copyright.h \
26        rpc.h trn_spec.h \
27        discuss/acl.h discuss/discuss.h discuss/dsname.h discuss/interface.h \
28        discuss/mit-sipb-copyright.h discuss/tfile.h discuss/types.h
29
30all: $(LINKS) config.h
31
32clean:
33        rm -rf ss usp $(LINKS) *~ discuss/?*~ config.h
34
35distclean: clean
36        rm -f Makefile
37
38depend: $(LINKS) config.h
39
40install:
41        ${MKDIR_P} ${DESTDIR}${includedir}/discuss
42        ${MKDIR_P} ${DESTDIR}${includedir}/usp
43        -for i in discuss/?*.h usp/?*.h; do \
44                ${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/$$i; \
45        done
46
47config.h: config.h.sed
48        rm -f config.h
49        sed     -e s:SERVERDIR:${sbindir}: \
50                -e s:INFODIR:${ssinfodir}: \
51                -e s:BINDIR:${bindir}: < config.h.sed > config.h
52
53usp:
54        -mkdir usp
55
56usp/usp.h: usp ../usp/usp.h
57        rm -f usp/usp.h
58        ln -s ../../usp/usp.h usp/
59
60usp.h:  usp/usp.h
61        rm -f usp.h
62        ln -s usp/usp.h .
63
64usp/usp_et.h: usp ../ets/usp_et.h
65        rm -f usp/usp_et.h
66        ln -s ../../ets/usp_et.h usp/
67
68usp_et.h: usp/usp_et.h
69        rm -f usp_et.h
70        ln -s usp/usp_et.h .
71
72rpc_et.h: ../ets/rpc_et.h
73        rm -f rpc_et.h
74        ln -s ../ets/rpc_et.h .
75
76discuss/dsc_et.h: ../ets/dsc_et.h
77        rm -f discuss/dsc_et.h
78        ln -s ../../ets/dsc_et.h discuss/
79
80discuss_err.h:  ../ets/discuss_err.h
81        rm -f discuss_err.h
82        ln -s ../ets/discuss_err.h .
83
84regexp.h: ../dsgrep/regexp/regexp.h
85        rm -f regexp.h
86        ln -s ../dsgrep/regexp/regexp.h .
Note: See TracBrowser for help on using the repository browser.