source: trunk/third/moira/lib/Makefile.in @ 23178

Revision 23178, 770 bytes checked in by broder, 16 years ago (diff)
Take a new snapshot from CVS for Moira, and add a debathena-moira-update-server package
Line 
1# $Id$
2
3SHELL=/bin/sh
4
5CC=@CC@
6CPPFLAGS=@CPPFLAGS@
7CFLAGS=@CFLAGS@
8DEFS=@DEFS@
9ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
10RANLIB=@RANLIB@
11COMPILE_ET=@COMPILE_ET@
12
13srcdir=@srcdir@
14VPATH=@srcdir@
15SRCTOP=@top_srcdir@
16BUILDTOP=..
17
18OBJS=   critical.o fixhost.o fixname.o \
19        hash.o kname_unparse.o krb_et.o mr_access.o mr_auth.o \
20        mr_call.o mr_connect.o mr_et.o mr_init.o mr_ops.o mr_query.o \
21        nfsparttype.o sq.o strs.o ureg_err.o
22
23ET_H=   mr_et.h krb_et.h ureg_err.h
24ET_C=   mr_et.c krb_et.c ureg_err.c
25
26.c.o:
27        $(CC) -c $(ALL_CFLAGS) $<
28
29.SUFFIXES: .et
30
31.et.c:
32        $(COMPILE_ET) $<
33
34all: depend libmoira.a
35
36clean:
37        rm -f $(OBJS) $(ET_H) $(ET_C) libmoira.a
38
39cleandir distclean: clean
40        rm -f Makefile
41
42depend: $(ET_C)
43
44install: all
45
46libmoira.a: $(OBJS)
47        ar cru $@ $(OBJS)
48        $(RANLIB) $@
Note: See TracBrowser for help on using the repository browser.