]> andersk Git - moira.git/blame_incremental - lib/Makefile.in
subnet status should be %s, not %d.
[moira.git] / lib / Makefile.in
... / ...
CommitLineData
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) $@
This page took 0.072219 seconds and 5 git commands to generate.