source: trunk/athena/bin/finger/Makefile.in @ 23925

Revision 23925, 709 bytes checked in by broder, 15 years ago (diff)
In finger: * Instead of explicitly linking against krb4, let libzephyr pull in whatever it needs. Copyright (C) 1989 by the Massachusetts Institute of Technology Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating export to obtain such a license before exporting. */
RevLine 
[10969]1# $Id: Makefile.in,v 1.1 1997-12-31 19:26:44 ghudson Exp $
2
3SHELL=/bin/sh
4INSTALL=@INSTALL@
5INSTALL_PROGRAM=@INSTALL@
6VPATH=@srcdir@
7srcdir=@srcdir@
8top_srcdir=@top_srcdir@
9prefix=@prefix@
10exec_prefix=@exec_prefix@
11bindir=@bindir@
12
13CC=@CC@
14CPPFLAGS=@CPPFLAGS@
15CFLAGS=@CFLAGS@
16DEFS=@DEFS@
17LDFLAGS=@LDFLAGS@
[23925]18LIBS=-lhesiod -lzephyr @LIBS@ -lcom_err
[10969]19ALL_CFLAGS=${DEFS} ${CPPFLAGS} ${CFLAGS}
20
21all: finger
22
23finger: finger.o
24        ${CC} ${LDFLAGS} -o $@ finger.o ${LIBS}
25
26.c.o:
27        ${CC} -c ${ALL_CFLAGS} $<
28
29install:
30        ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir}
31        ${INSTALL_PROGRAM} -m 555 finger ${DESTDIR}${bindir}
32
33clean:
34        rm -f finger finger.o
35
36distclean: clean
37        rm -f Makefile config.status config.cache config.log
Note: See TracBrowser for help on using the repository browser.