]> andersk Git - moira.git/blob - dbck/Makefile.in
Switch from Imake-based build system to autoconf-based.
[moira.git] / dbck / Makefile.in
1 # $Id$
2
3 SHELL=/bin/sh
4 @SET_MAKE@
5
6 CC=@CC@
7 CPPFLAGS=@CPPFLAGS@
8 CFLAGS=@CFLAGS@
9 DEFS=@DEFS@
10 ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11 PRO_C=@PRO_C@
12 PRO_C_DEFS=@PRO_C_DEFS@
13 PRO_C_INCLUDES=@PRO_C_INCLUDES@
14 PRO_C_OPTS=@PRO_C_OPTS@
15 PRO_C_FLAGS=$(PRO_C_OPTS) $(PRO_C_DEFS) $(PRO_C_INCLUDES)
16 LDFLAGS=@LDFLAGS@
17 LIBS=@SQL_LIBS@ @LIBS@
18 INSTALL_PROGRAM=@INSTALL_PROGRAM@
19
20 srcdir=@srcdir@
21 VPATH=@srcdir@
22 SRCTOP=@top_srcdir@
23 BUILDTOP=..
24 mrbindir=@mrbindir@
25
26 OBJS=dbck.o fix.o phase1.o phase2.o phase3.o phase4.o
27
28 CFILES=dbck.c fix.c phase1.c phase2.c phase3.c phase4.c
29
30 TARGET=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
40 all: $(TARGET)
41
42 clean:
43         rm -f $(OBJS) $(CFILES) $(TARGET)
44
45 depend: $(CFILES)
46
47 install: all
48         $(INSTALL_PROGRAM) dbck $(mrbindir)
49
50 $(TARGET): $(OBJS)
51         $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
This page took 0.043886 seconds and 5 git commands to generate.