]> andersk Git - moira.git/blame - dbck/Makefile.in
regen
[moira.git] / dbck / Makefile.in
CommitLineData
ea0caf4a 1# $Id$
2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
7CPPFLAGS=@CPPFLAGS@
8CFLAGS=@CFLAGS@
9DEFS=@DEFS@
10ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11PRO_C=@PRO_C@
12PRO_C_DEFS=@PRO_C_DEFS@
13PRO_C_INCLUDES=@PRO_C_INCLUDES@
14PRO_C_OPTS=@PRO_C_OPTS@
15PRO_C_FLAGS=$(PRO_C_OPTS) $(PRO_C_DEFS) $(PRO_C_INCLUDES)
16LDFLAGS=@LDFLAGS@
17LIBS=@SQL_LIBS@ @LIBS@
18INSTALL_PROGRAM=@INSTALL_PROGRAM@
19
20srcdir=@srcdir@
21VPATH=@srcdir@
22SRCTOP=@top_srcdir@
23BUILDTOP=..
24mrbindir=@mrbindir@
25
26OBJS=dbck.o fix.o phase1.o phase2.o phase3.o phase4.o
27
28CFILES=dbck.c fix.c phase1.c phase2.c phase3.c phase4.c
29
30TARGET=dbck
31
32.SUFFIXES: .pc
33
34.pc.c:
35 $(PRO_C) $(PRO_C_FLAGS) INAME=$<
36
37.c.o:
38 $(CC) -c $(ALL_CFLAGS) $<
39
40all: $(TARGET)
41
42clean:
43 rm -f $(OBJS) $(CFILES) $(TARGET)
44
45depend: $(CFILES)
46
47install: all
48 $(INSTALL_PROGRAM) dbck $(mrbindir)
49
50$(TARGET): $(OBJS)
51 $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
This page took 0.181306 seconds and 5 git commands to generate.