Revision 24319,
832 bytes
checked in by broder, 15 years ago
(diff) |
New Moira snapshot from SVN.
|
Line | |
---|
1 | # $Id: Makefile.in 3956 2010-01-05 20:56:56Z zacheiss $ |
---|
2 | |
---|
3 | SHELL=/bin/sh |
---|
4 | @SET_MAKE@ |
---|
5 | |
---|
6 | srcdir=@srcdir@ |
---|
7 | VPATH=@srcdir@ |
---|
8 | SRCTOP=@top_srcdir@ |
---|
9 | top_builddir=@top_builddir@ |
---|
10 | BUILDTOP=../.. |
---|
11 | |
---|
12 | CC=@CC@ |
---|
13 | CPPFLAGS=@CPPFLAGS@ |
---|
14 | CFLAGS=@CFLAGS@ |
---|
15 | DEFS=@DEFS@ |
---|
16 | ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS) |
---|
17 | LIBTOOL=@LIBTOOL@ |
---|
18 | |
---|
19 | .SUFFIXES: .lo |
---|
20 | |
---|
21 | .c.lo: |
---|
22 | $(LIBTOOL) --mode=compile $(CC) -c $(ALL_CFLAGS) $< |
---|
23 | |
---|
24 | all: moira_schema.h moira_schema.c moira_schema.lo |
---|
25 | |
---|
26 | clean: |
---|
27 | $(LIBTOOL) --mode=clean rm -f moira_schema.h moira_schema.c moira_schema.lo |
---|
28 | |
---|
29 | cleandir distclean: clean |
---|
30 | rm -f Makefile |
---|
31 | |
---|
32 | depend: moira_schema.c moira_schema.h |
---|
33 | |
---|
34 | install: |
---|
35 | |
---|
36 | moira_schema.h: $(srcdir)/schema.sql |
---|
37 | tr '[a-z]' '[A-Z]' < $(srcdir)/schema.sql | \ |
---|
38 | awk -f $(srcdir)/doschema.awk > moira_schema.h |
---|
39 | |
---|
40 | moira_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.