]> andersk Git - moira.git/blob - lib/Makefile.in
71f33c7c6a533415579f5e8124fd6412b0dabd44
[moira.git] / lib / Makefile.in
1 # $Id$
2
3 SHELL=/bin/sh
4
5 CC=@CC@
6 CPPFLAGS=@CPPFLAGS@
7 CFLAGS=@CFLAGS@
8 DEFS=@DEFS@
9 ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
10 RANLIB=@RANLIB@
11 COMPILE_ET=@COMPILE_ET@
12
13 srcdir=@srcdir@
14 VPATH=@srcdir@
15 SRCTOP=@top_srcdir@
16 BUILDTOP=..
17
18 OBJS=   critical.o fixhost.o fixname.o \
19         hash.o kname_unparse.o kname_parse.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
23 ET_H=   mr_et.h krb_et.h ureg_err.h
24 ET_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
34 all: depend libmoira.a
35
36 clean:
37         rm -f $(OBJS) $(ET_H) $(ET_C) libmoira.a
38
39 cleandir distclean: clean
40         rm -f Makefile
41
42 depend: $(ET_C)
43
44 install: all
45
46 libmoira.a: $(OBJS)
47         ar cru $@ $(OBJS)
48         $(RANLIB) $@
This page took 0.111861 seconds and 3 git commands to generate.