source: trunk/athena/bin/lert/Imakefile @ 10504

Revision 10504, 1.2 KB checked in by ghudson, 27 years ago (diff)
Use krb4 compatibility in krb5.
Line 
1/*
2 *  Imakefile for lert
3 *  Copyright (c) 1995, Massachusetts Institute of Technology
4 *             
5 *   $Source: /afs/dev.mit.edu/source/repository/athena/bin/lert/Imakefile,v $
6 *   $Author: ghudson $
7 *
8 * For copying and distribution information, please see the file
9 * <mit-copyright.h>.
10 *
11 */
12
13/*
14 *#include "mit-copyright.h"
15 */
16
17LERT            =       lert
18
19LERTLOAD                =       lertload
20
21LERTDUMP                =       lertdump
22
23LERTSTOP                =       lertstop
24
25LERTSAID                =       lertsaid
26
27LERTUSED                =       lertused
28
29LERTSRV         =       lertsrv
30
31LERTOBJS                =       lert.o
32
33LERTLOADOBJS    =       lertload.o
34
35LERTDUMPOBJS    =       lertdump.o
36
37LERTSTOPOBJS    =       lertstop.o
38
39LERTSAIDOBJS    =       lertsaid.o
40
41LERTUSEDOBJS    =       lertused.o
42
43LERTSRVOBJS     =       lertsrv.o
44
45CFILES  =       lert.c lertload.c lertdump.c lertstop.c lertsaid.c lertused.c lertsrv.c
46
47LIBS            =       -lkrb4 -ldes425 -lkrb5 -lcrypto -lcom_err -lhesiod
48
49DEFINES         =       
50
51AnsiCC()
52
53SimpleProgram(${LERT},${LERTOBJS},${LIBS},${ATHBINDIR}/${LERT})
54build_program(${LERTSRV},${LERTSRVOBJS},,${LIBS})
55build_program(${LERTLOAD},${LERTLOADOBJS},,${LIBS})
56build_program(${LERTDUMP},${LERTDUMPOBJS},,${LIBS})
57build_program(${LERTSTOP},${LERTSTOPOBJS},,${LIBS})
58build_program(${LERTSAID},${LERTSAIDOBJS},,${LIBS})
59build_program(${LERTUSED},${LERTUSEDOBJS},,${LIBS})
60install_man(${LERT}.1,${LERT}.1)
61
62create_depend(${CFILES})
Note: See TracBrowser for help on using the repository browser.