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 | |
---|
17 | LERT = lert |
---|
18 | |
---|
19 | LERTLOAD = lertload |
---|
20 | |
---|
21 | LERTDUMP = lertdump |
---|
22 | |
---|
23 | LERTSTOP = lertstop |
---|
24 | |
---|
25 | LERTSAID = lertsaid |
---|
26 | |
---|
27 | LERTUSED = lertused |
---|
28 | |
---|
29 | LERTSRV = lertsrv |
---|
30 | |
---|
31 | LERTOBJS = lert.o |
---|
32 | |
---|
33 | LERTLOADOBJS = lertload.o |
---|
34 | |
---|
35 | LERTDUMPOBJS = lertdump.o |
---|
36 | |
---|
37 | LERTSTOPOBJS = lertstop.o |
---|
38 | |
---|
39 | LERTSAIDOBJS = lertsaid.o |
---|
40 | |
---|
41 | LERTUSEDOBJS = lertused.o |
---|
42 | |
---|
43 | LERTSRVOBJS = lertsrv.o |
---|
44 | |
---|
45 | CFILES = lert.c lertload.c lertdump.c lertstop.c lertsaid.c lertused.c lertsrv.c |
---|
46 | |
---|
47 | LIBS = -lkrb4 -ldes425 -lkrb5 -lcrypto -lcom_err -lhesiod |
---|
48 | |
---|
49 | DEFINES = |
---|
50 | |
---|
51 | AnsiCC() |
---|
52 | |
---|
53 | SimpleProgram(${LERT},${LERTOBJS},${LIBS},${ATHBINDIR}/${LERT}) |
---|
54 | build_program(${LERTSRV},${LERTSRVOBJS},,${LIBS}) |
---|
55 | build_program(${LERTLOAD},${LERTLOADOBJS},,${LIBS}) |
---|
56 | build_program(${LERTDUMP},${LERTDUMPOBJS},,${LIBS}) |
---|
57 | build_program(${LERTSTOP},${LERTSTOPOBJS},,${LIBS}) |
---|
58 | build_program(${LERTSAID},${LERTSAIDOBJS},,${LIBS}) |
---|
59 | build_program(${LERTUSED},${LERTUSEDOBJS},,${LIBS}) |
---|
60 | install_man(${LERT}.1,${LERT}.1) |
---|
61 | |
---|
62 | create_depend(${CFILES}) |
---|