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

Revision 24618, 868 bytes checked in by broder, 15 years ago (diff)
In discuss: * Update our autogoo for the 21st century.
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@
9INSTALL_DATA=@INSTALL_DATA@
10srcdir=@srcdir@
11top_srcdir=@top_srcdir@
12prefix=@prefix@
13exec_prefix=@exec_prefix@
14bindir=@bindir@
15datarootdir=@datarootdir@
16mandir=@mandir@
17
18CC=@CC@
19DEFS=@DEFS@
20CPPFLAGS=@CPPFLAGS@
21CFLAGS=@CFLAGS@
22LDFLAGS=@LDFLAGS@
23LIBS=../libds/libdsk.a ../usp/libusp.a @REGEX_LIBS@ @KRB4_LIBS@ @KRB5_LIBS@ @LIBS@
24ALL_CFLAGS=-I../include ${CPPFLAGS} ${CFLAGS} ${DEFS}
25
26OBJS= dsgrep.o regerror.o
27
28.c.o:
29        ${CC} -c ${ALL_CFLAGS} $<
30
31all: dsgrep
32
33clean:
34        rm -f dsgrep *.o
35
36depend:
37
38install:
39        ${MKDIR_P} ${DESTDIR}${bindir}
40        ${MKDIR_P} ${DESTDIR}${mandir}/man1
41        ${INSTALL_PROGRAM} dsgrep ${DESTDIR}${bindir}
42        ${INSTALL_DATA} dsgrep.1 ${DESTDIR}${mandir}/man1
43
44dsgrep: $(OBJS)
45        ${CC} ${LDFLAGS} -o dsgrep ${OBJS} ${LIBS}
Note: See TracBrowser for help on using the repository browser.