Revision 11059,
1.1 KB
checked in by ghudson, 27 years ago
(diff) |
Eliminate redundant Kerberos code, moving afs_realm_of_cell to aklog_main.c.
|
Line | |
---|
1 | # $Id: Makefile.in,v 1.3 1998-01-20 23:19:42 ghudson Exp $ |
---|
2 | |
---|
3 | SHELL=/bin/sh |
---|
4 | VPATH=@srcdir@ |
---|
5 | INSTALL=@INSTALL@ |
---|
6 | INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
---|
7 | srcdir=@srcdir@ |
---|
8 | top_srcdir=@top_srcdir@ |
---|
9 | prefix=@prefix@ |
---|
10 | exec_prefix=@exec_prefix@ |
---|
11 | bindir=@bindir@ |
---|
12 | lbindir=@lbindir@ |
---|
13 | mandir=@mandir@ |
---|
14 | |
---|
15 | CC=@CC@ |
---|
16 | CPPFLAGS=@CPPFLAGS@ |
---|
17 | CFLAGS=@CFLAGS@ |
---|
18 | LDFLAGS=@LDFLAGS@ |
---|
19 | LIBS=@LIBS@ |
---|
20 | KRB4_LIBS=@KRB4_LIBS@ |
---|
21 | ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} |
---|
22 | |
---|
23 | AFS_LIBS=-lprot -lauth -lrxkad -lubik @AFS_DIR@/lib/afs/util.a -laudit \ |
---|
24 | -lsys -lrx -llwp -lsys @AFS_DIR@/lib/libdes.a |
---|
25 | OBJS=aklog.o aklog_main.o aklog_param.o linked_list.o |
---|
26 | |
---|
27 | all: aklog |
---|
28 | |
---|
29 | aklog: ${OBJS} |
---|
30 | ${CC} ${LDFLAGS} -o aklog ${OBJS} ${AFS_LIBS} ${KRB4_LIBS} -lcom_err \ |
---|
31 | ${LIBS} |
---|
32 | |
---|
33 | .c.o: |
---|
34 | ${CC} -c ${ALL_CFLAGS} $< |
---|
35 | |
---|
36 | check: |
---|
37 | |
---|
38 | install: |
---|
39 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${lbindir} |
---|
40 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man1 |
---|
41 | ${INSTALL_PROGRAM} -m 555 aklog ${DESTDIR}${lbindir} |
---|
42 | ${INSTALL_PROGRAM} -m 555 aklog.1 ${DESTDIR}${mandir}/man1 |
---|
43 | |
---|
44 | clean: |
---|
45 | rm -f ${OBJS} aklog |
---|
46 | |
---|
47 | distclean: clean |
---|
48 | rm -f config.cache config.log config.status Makefile |
---|
49 | |
---|
50 | aklog_main.o linked_list.o: linked_list.h |
---|
51 | aklog.o aklog_main.o aklog_param.o: aklog.h |
---|
Note: See
TracBrowser
for help on using the repository browser.