]> andersk Git - moira.git/blob - clients/lib/Makefile.in
Heap o' new functionality. Specifically:
[moira.git] / clients / 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
12 srcdir=@srcdir@
13 VPATH=@srcdir@
14 SRCTOP=@top_srcdir@
15 BUILDTOP=../..
16
17 OBJS=error.o mail.o member.o pobox.o utils.o
18
19 .c.o:
20         $(CC) -c $(ALL_CFLAGS) $<
21
22 all: libmrclient.a
23
24 clean:
25         rm -f $(OBJS) libmrclient.a
26
27 cleandir distclean: clean
28         rm -f Makefile
29
30 depend:
31
32 install: all
33
34 libmrclient.a: $(OBJS)
35         ar cru $@ $(OBJS)
36         $(RANLIB) $@
This page took 0.047208 seconds and 5 git commands to generate.