source: trunk/athena/bin/discuss/dsgrep/Makefile.in @ 22658

Revision 22658, 850 bytes checked in by amb, 17 years ago (diff)
Adds krb5 forwards- and backwards-compatability to the discuss client and server.
Line 
1#
2# $Id: Makefile.in,v 1.3 2007-08-09 20:41:31 amb Exp $
3#
4
5SHELL=/bin/sh
6VPATH=@srcdir@
7INSTALL=@INSTALL@
8INSTALL_PROGRAM=@INSTALL_PROGRAM@
9srcdir=@srcdir@
10top_srcdir=@top_srcdir@
11prefix=@prefix@
12exec_prefix=@exec_prefix@
13bindir=@bindir@
14mandir=@mandir@
15
16CC=@CC@
17DEFS=@DEFS@
18CPPFLAGS=@CPPFLAGS@
19CFLAGS=@CFLAGS@
20LDFLAGS=@LDFLAGS@
21LIBS=../libds/libdsk.a ../usp/libusp.a @REGEX_LIBS@ @KRB4_LIBS@ @KRB5_LIBS@ @LIBS@
22ALL_CFLAGS=-I../include ${CPPFLAGS} ${CFLAGS} ${DEFS}
23
24OBJS= dsgrep.o regerror.o
25
26.c.o:
27        ${CC} -c ${ALL_CFLAGS} $<
28
29all: dsgrep
30
31clean:
32        rm -f dsgrep *.o
33
34depend:
35
36install:
37        ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir}
38        ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man1
39        ${INSTALL_PROGRAM} dsgrep ${DESTDIR}${bindir}
40        ${INSTALL} -m 444 dsgrep.1 ${DESTDIR}${mandir}/man1
41
42dsgrep: $(OBJS)
43        ${CC} ${LDFLAGS} -o dsgrep ${OBJS} ${LIBS}
Note: See TracBrowser for help on using the repository browser.