source: trunk/third/moira/dbck/Makefile.in @ 24319

Revision 24319, 1.4 KB checked in by broder, 14 years ago (diff)
New Moira snapshot from SVN.
Line 
1# $Id: Makefile.in 3956 2010-01-05 20:56:56Z zacheiss $
2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
7CPPFLAGS=@CPPFLAGS@
8CFLAGS=@CFLAGS@
9DEFS=@DEFS@
10ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11LIBTOOL=@LIBTOOL@
12PRO_C=@PRO_C@
13PRO_C_DEFS=@PRO_C_DEFS@
14PRO_C_INCLUDES=@PRO_C_INCLUDES@
15PRO_C_OPTS=@PRO_C_OPTS@
16PRO_C_FLAGS=$(PRO_C_OPTS) $(PRO_C_DEFS) $(PRO_C_INCLUDES)
17LDFLAGS=@LDFLAGS@
18LIBS=@SQL_LIBS@ @LIBS@
19MR_LIBDEP=@MR_LIBDEP@
20INSTALL=@INSTALL@
21INSTALL_PROGRAM=@INSTALL_PROGRAM@
22
23srcdir=@srcdir@
24VPATH=@srcdir@
25SRCTOP=@top_srcdir@
26top_builddir=@top_builddir@
27BUILDTOP=..
28mrbindir=@mrbindir@
29
30DBCK_OBJS=dbck.lo fix.lo phase1.lo phase2.lo phase3.lo phase4.lo
31MEMBERS_OBJS=members.lo
32OBJS= $(DBCK_OBJS) $(MEMBERS_OBJS)
33
34CFILES=dbck.c fix.c phase1.c phase2.c phase3.c phase4.c members.c
35
36TARGET=dbck members
37
38.SUFFIXES: .pc .lo
39
40.pc.c:
41        $(PRO_C) $(PRO_C_FLAGS) INAME=$< ONAME=$@
42
43.c.lo:
44        $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $<
45
46all: $(TARGET)
47
48clean:
49        $(LIBTOOL) --mode=clean rm -f $(OBJS) $(CFILES) $(TARGET)
50
51cleandir distclean: clean
52        rm -f Makefile
53
54depend: $(CFILES)
55
56install:
57        $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) dbck $(DESTDIR)$(mrbindir)
58        $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) members $(DESTDIR)$(mrbindir)
59
60dbck: $(DBCK_OBJS) $(MR_LIBDEP)
61        $(LIBTOOL) --mode=link $(CC) -static -o $@ $(LDFLAGS) $(DBCK_OBJS) $(LIBS)
62
63members: $(MEMBERS_OBJS) $(MR_LIBDEP)
64        $(LIBTOOL) --mode=link $(CC) -static -o $@ $(LDFLAGS) $(MEMBERS_OBJS) $(LIBS)
65
66
67
68
69
Note: See TracBrowser for help on using the repository browser.