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

Revision 24319, 832 bytes 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
6srcdir=@srcdir@
7VPATH=@srcdir@
8SRCTOP=@top_srcdir@
9top_builddir=@top_builddir@
10BUILDTOP=../..
11
12CC=@CC@
13CPPFLAGS=@CPPFLAGS@
14CFLAGS=@CFLAGS@
15DEFS=@DEFS@
16ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
17LIBTOOL=@LIBTOOL@
18
19.SUFFIXES: .lo
20
21.c.lo:
22        $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $<
23
24all: moira_schema.h moira_schema.c moira_schema.lo
25
26clean:
27        $(LIBTOOL) --mode=clean rm -f moira_schema.h moira_schema.c moira_schema.lo
28
29cleandir distclean: clean
30        rm -f Makefile
31
32depend: moira_schema.c moira_schema.h
33
34install:
35
36moira_schema.h: $(srcdir)/schema.sql
37        tr '[a-z]' '[A-Z]' < $(srcdir)/schema.sql | \
38                awk -f $(srcdir)/doschema.awk > moira_schema.h
39
40moira_schema.c: schema.sql
41        awk -f $(srcdir)/doschema.awk < $(srcdir)/schema.sql > moira_schema.c
Note: See TracBrowser for help on using the repository browser.