]> andersk Git - moira.git/blame - lib/Makefile.in
EncryptID is no longer used anywhere. move RemoveHyphens to fixname.c
[moira.git] / lib / Makefile.in
CommitLineData
ea0caf4a 1# $Id$
2
3SHELL=/bin/sh
4
5CC=@CC@
33b0f7c3 6CPPFLAGS=@CPPFLAGS@
ea0caf4a 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 gdss_convert.o gdss_et.o \
33b0f7c3 19 hash.o kname_unparse.o krb_et.o mr_access.o mr_auth.o \
ea0caf4a 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 gdss_et.h
24ET_C= mr_et.c krb_et.c ureg_err.c gdss_et.c
25
26.c.o:
27 $(CC) -c $(ALL_CFLAGS) $<
28
29.SUFFIXES: .et
30
31.et.h:
32 $(COMPILE_ET) $<
33
34all: depend libmoira.a
35
36clean:
37 rm -f $(OBJS) $(ET_H) $(ET_C) libmoira.a
38
39depend: $(ET_H)
40
41install: all
42
43libmoira.a: $(OBJS)
44 ar cru $@ $(OBJS)
45 $(RANLIB) $@
This page took 0.055734 seconds and 5 git commands to generate.