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.
*/
|
Rev | Line | |
---|
[10969] | 1 | # $Id: Makefile.in,v 1.1 1997-12-31 19:26:44 ghudson Exp $ |
---|
| 2 | |
---|
| 3 | SHELL=/bin/sh |
---|
| 4 | INSTALL=@INSTALL@ |
---|
| 5 | INSTALL_PROGRAM=@INSTALL@ |
---|
| 6 | VPATH=@srcdir@ |
---|
| 7 | srcdir=@srcdir@ |
---|
| 8 | top_srcdir=@top_srcdir@ |
---|
| 9 | prefix=@prefix@ |
---|
| 10 | exec_prefix=@exec_prefix@ |
---|
| 11 | bindir=@bindir@ |
---|
| 12 | |
---|
| 13 | CC=@CC@ |
---|
| 14 | CPPFLAGS=@CPPFLAGS@ |
---|
| 15 | CFLAGS=@CFLAGS@ |
---|
| 16 | DEFS=@DEFS@ |
---|
| 17 | LDFLAGS=@LDFLAGS@ |
---|
[23925] | 18 | LIBS=-lhesiod -lzephyr @LIBS@ -lcom_err |
---|
[10969] | 19 | ALL_CFLAGS=${DEFS} ${CPPFLAGS} ${CFLAGS} |
---|
| 20 | |
---|
| 21 | all: finger |
---|
| 22 | |
---|
| 23 | finger: finger.o |
---|
| 24 | ${CC} ${LDFLAGS} -o $@ finger.o ${LIBS} |
---|
| 25 | |
---|
| 26 | .c.o: |
---|
| 27 | ${CC} -c ${ALL_CFLAGS} $< |
---|
| 28 | |
---|
| 29 | install: |
---|
| 30 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} |
---|
| 31 | ${INSTALL_PROGRAM} -m 555 finger ${DESTDIR}${bindir} |
---|
| 32 | |
---|
| 33 | clean: |
---|
| 34 | rm -f finger finger.o |
---|
| 35 | |
---|
| 36 | distclean: clean |
---|
| 37 | rm -f Makefile config.status config.cache config.log |
---|
Note: See
TracBrowser
for help on using the repository browser.