]> andersk Git - moira.git/blame - clients/lib/Makefile.in
add cleandir/distclean target
[moira.git] / clients / lib / Makefile.in
CommitLineData
013096e5 1# $Id$
2
3SHELL=/bin/sh
4
5CC=@CC@
6CPPFLAGS=@CPPFLAGS@
7CFLAGS=@CFLAGS@
8DEFS=@DEFS@
9ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
10RANLIB=@RANLIB@
11
12srcdir=@srcdir@
13VPATH=@srcdir@
14SRCTOP=@top_srcdir@
15BUILDTOP=../..
16
17OBJS=pobox.o utils.o
18
19.c.o:
20 $(CC) -c $(ALL_CFLAGS) $<
21
22all: libmrclient.a
23
24clean:
25 rm -f $(OBJS) libmrclient.a
26
0bd2b68c 27cleandir distclean: clean
28 rm -f Makefile
29
013096e5 30depend:
31
32install: all
33
34libmrclient.a: $(OBJS)
35 ar cru $@ $(OBJS)
36 $(RANLIB) $@
This page took 0.162681 seconds and 5 git commands to generate.