[12439] | 1 | # |
---|
| 2 | # $Id: Makefile.in,v 1.1 1999-02-02 20:40:18 kcr Exp $ |
---|
| 3 | # |
---|
| 4 | |
---|
| 5 | SHELL=/bin/sh |
---|
| 6 | VPATH=@srcdir@ |
---|
| 7 | INSTALL=@INSTALL@ |
---|
| 8 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
[24618] | 9 | INSTALL_DATA=@INSTALL_DATA@ |
---|
| 10 | MKDIR_P=@MKDIR_P@ |
---|
[12439] | 11 | srcdir=@srcdir@ |
---|
| 12 | top_srcdir=@top_srcdir@ |
---|
| 13 | prefix=@prefix@ |
---|
| 14 | exec_prefix=@exec_prefix@ |
---|
| 15 | bindir=@bindir@ |
---|
| 16 | sbindir=@sbindir@ |
---|
[24618] | 17 | includedir=@includedir@ |
---|
[12439] | 18 | |
---|
[24618] | 19 | datarootdir=@datarootdir@ |
---|
[12439] | 20 | datadir=@datadir@ |
---|
[24624] | 21 | ssinfodir=${datadir}/discuss/info |
---|
[12439] | 22 | |
---|
| 23 | LINKS= usp/usp.h usp/usp_et.h rpc_et.h discuss/dsc_et.h usp.h usp_et.h \ |
---|
| 24 | discuss_err.h |
---|
| 25 | FILES= 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 | |
---|
| 30 | all: $(LINKS) config.h |
---|
| 31 | |
---|
| 32 | clean: |
---|
| 33 | rm -rf ss usp $(LINKS) *~ discuss/?*~ config.h |
---|
| 34 | |
---|
[24621] | 35 | distclean: clean |
---|
| 36 | rm -f Makefile |
---|
| 37 | |
---|
[12439] | 38 | depend: $(LINKS) config.h |
---|
| 39 | |
---|
| 40 | install: |
---|
[24618] | 41 | ${MKDIR_P} ${DESTDIR}${includedir}/discuss |
---|
| 42 | ${MKDIR_P} ${DESTDIR}${includedir}/usp |
---|
[12439] | 43 | -for i in discuss/?*.h usp/?*.h; do \ |
---|
[24618] | 44 | ${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/$$i; \ |
---|
[12439] | 45 | done |
---|
| 46 | |
---|
| 47 | config.h: config.h.sed |
---|
| 48 | rm -f config.h |
---|
| 49 | sed -e s:SERVERDIR:${sbindir}: \ |
---|
[24624] | 50 | -e s:INFODIR:${ssinfodir}: \ |
---|
[12439] | 51 | -e s:BINDIR:${bindir}: < config.h.sed > config.h |
---|
| 52 | |
---|
| 53 | usp: |
---|
| 54 | -mkdir usp |
---|
| 55 | |
---|
| 56 | usp/usp.h: usp ../usp/usp.h |
---|
| 57 | rm -f usp/usp.h |
---|
| 58 | ln -s ../../usp/usp.h usp/ |
---|
| 59 | |
---|
| 60 | usp.h: usp/usp.h |
---|
| 61 | rm -f usp.h |
---|
| 62 | ln -s usp/usp.h . |
---|
| 63 | |
---|
| 64 | usp/usp_et.h: usp ../ets/usp_et.h |
---|
| 65 | rm -f usp/usp_et.h |
---|
| 66 | ln -s ../../ets/usp_et.h usp/ |
---|
| 67 | |
---|
| 68 | usp_et.h: usp/usp_et.h |
---|
| 69 | rm -f usp_et.h |
---|
| 70 | ln -s usp/usp_et.h . |
---|
| 71 | |
---|
| 72 | rpc_et.h: ../ets/rpc_et.h |
---|
| 73 | rm -f rpc_et.h |
---|
| 74 | ln -s ../ets/rpc_et.h . |
---|
| 75 | |
---|
| 76 | discuss/dsc_et.h: ../ets/dsc_et.h |
---|
| 77 | rm -f discuss/dsc_et.h |
---|
| 78 | ln -s ../../ets/dsc_et.h discuss/ |
---|
| 79 | |
---|
| 80 | discuss_err.h: ../ets/discuss_err.h |
---|
| 81 | rm -f discuss_err.h |
---|
| 82 | ln -s ../ets/discuss_err.h . |
---|
| 83 | |
---|
| 84 | regexp.h: ../dsgrep/regexp/regexp.h |
---|
| 85 | rm -f regexp.h |
---|
| 86 | ln -s ../dsgrep/regexp/regexp.h . |
---|