Revision 10764,
862 bytes
checked in by ghudson, 27 years ago
(diff) |
Use an autoconf build system.
|
Line | |
---|
1 | # $Id: Makefile.in,v 1.1 1997-11-17 16:25:08 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 | |
---|
13 | CC=@CC@ |
---|
14 | CPPFLAGS=@CPPFLAGS@ |
---|
15 | CFLAGS=@CFLAGS@ |
---|
16 | LDFLAGS=@LDFLAGS@ |
---|
17 | LIBS=@LIBS@ |
---|
18 | ALL_CFLAGS=${CPPFLAGS} ${CFLAGS} |
---|
19 | |
---|
20 | AFS_LIBS=-lvolser -lvldb -lubik -lauth -lcmd -lrxkad \ |
---|
21 | @AFS_DIR@/lib/libdes.a -lrx -llwp -lsys -lkauth \ |
---|
22 | @AFS_DIR@/lib/afs/util.a -laudit |
---|
23 | |
---|
24 | all: voldump |
---|
25 | |
---|
26 | voldump: voldump.o |
---|
27 | ${CC} ${LDFLAGS} -o voldump voldump.o ${AFS_LIBS} -lcom_err ${LIBS} |
---|
28 | |
---|
29 | .c.o: |
---|
30 | ${CC} -c ${ALL_CFLAGS} $< |
---|
31 | |
---|
32 | check: |
---|
33 | |
---|
34 | install: |
---|
35 | ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} |
---|
36 | ${INSTALL_PROGRAM} -m 555 voldump ${DESTDIR}${bindir}/voldump |
---|
37 | |
---|
38 | clean: |
---|
39 | rm -f voldump.o voldump |
---|
40 | |
---|
41 | distclean: clean |
---|
42 | rm -f config.cache config.log config.status Makefile |
---|
Note: See
TracBrowser
for help on using the repository browser.