source: trunk/athena/bin/discuss/mclient/Makefile.in @ 24651

Revision 24651, 2.2 KB checked in by broder, 14 years ago (diff)
In discuss: * Eliminate libds, as its only use could be replaced by libdsk.
Line 
1#
2# $Id: Makefile.in,v 1.2 2007-08-09 20:41:32 amb 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@
16datarootdir=@datarootdir@
17mandir=@mandir@
18
19CC=@CC@
20DEFS=@DEFS@
21CPPFLAGS=@CPPFLAGS@
22CFLAGS=@CFLAGS@
23LDFLAGS=@LDFLAGS@
24LIBS=@LIBS@
25ALL_CFLAGS=-I../include ${CPPFLAGS} ${CFLAGS} ${DEFS}
26
27KLIBS=  ../libds/libdsk.a ../usp/libusp.a @KRB4_LIBS@ @KRB5_LIBS@ ${LIBS}
28
29.c.o:
30        ${CC} -c ${ALL_CFLAGS} $<
31
32all: create_mtg_dir crmtgs mkds pmtg dsmail dspipe
33
34clean:
35        rm -f create_mtg_dir crmtgs mkds pmtg dsmail dspipe *.o
36
37distclean: clean
38        rm -f Makefile
39
40depend:
41
42install:
43        ${MKDIR_P} ${DESTDIR}${bindir}
44        ${MKDIR_P} ${DESTDIR}${mandir}/man1
45        ${MKDIR_P} ${DESTDIR}${mandir}/man8
46        ${INSTALL_PROGRAM} create_mtg_dir ${DESTDIR}${bindir}
47        ${INSTALL_PROGRAM} crmtgs ${DESTDIR}${bindir}
48        ${INSTALL_PROGRAM} mkds ${DESTDIR}${bindir}
49        ${INSTALL_PROGRAM} pmtg ${DESTDIR}${bindir}
50        ${INSTALL_PROGRAM} dsmail ${DESTDIR}${bindir}
51        ${INSTALL_PROGRAM} dspipe ${DESTDIR}${bindir}
52        -rm -f $(DESTDIR)${bindir}/rmds
53        -ln -s mkds $(DESTDIR)$(bindir)/rmds
54        ${INSTALL} -m 755 dsc_setup.sh ${DESTDIR}${bindir}/dsc_setup
55        ${INSTALL_DATA} crmtgs.1 ${DESTDIR}${mandir}/man1
56        ${INSTALL_DATA} mkds.8 ${DESTDIR}${mandir}/man8
57        ${INSTALL_DATA} pmtg.1 ${DESTDIR}${mandir}/man1
58        ${INSTALL_DATA} dsmail.1 ${DESTDIR}${mandir}/man1
59        ${INSTALL_DATA} dspipe.8 ${DESTDIR}${mandir}/man8
60        ${INSTALL_DATA} dsc_setup.1 ${DESTDIR}${mandir}/man1
61        ${INSTALL_DATA} rmds.8 ${DESTDIR}${mandir}/man8
62
63create_mtg_dir: create_mtg_dir.o
64        ${CC} ${LDFLAGS} -o create_mtg_dir create_mtg_dir.o
65
66crmtgs: crmtgs.o ../ets/dsc_et.o
67        ${CC} ${LDFLAGS} -o crmtgs crmtgs.o ../ets/dsc_et.o ${KLIBS}
68
69mkds: mkds.o ../ets/dsc_et.o ../client/edit.o
70        ${CC} ${LDFLAGS} -o mkds mkds.o ../ets/dsc_et.o ../client/edit.o ${KLIBS}
71
72pmtg: pmtg.o ../ets/dsc_et.o
73        ${CC} ${LDFLAGS} -o pmtg pmtg.o ../ets/dsc_et.o ${KLIBS}
74
75dsmail: dsmail.o ../ets/dsc_et.o
76        ${CC} ${LDFLAGS} -o dsmail dsmail.o ../ets/dsc_et.o ${KLIBS}
77
78dspipe: dspipe.o ../ets/dsc_et.o
79        ${CC} ${LDFLAGS} -o dspipe dspipe.o ../ets/dsc_et.o ${KLIBS}
Note: See TracBrowser for help on using the repository browser.