]> andersk Git - moira.git/blob - clients/mrtest/Makefile.in
Switch from Imake-based build system to autoconf-based.
[moira.git] / clients / mrtest / Makefile.in
1 # $Id$
2
3 SHELL=/bin/sh
4 @SET_MAKE@
5
6 CC=@CC@
7 CPPFLAGS=@CPPFLAGS@ @READLINE_CPPFLAGS@
8 CFLAGS=@CFLAGS@
9 DEFS=@DEFS@
10 ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11 LDFLAGS=@LDFLAGS@
12 LIBS=@READLINE_LIBS@ @LIBS@
13 INSTALL_PROGRAM=@INSTALL_PROGRAM@
14
15 srcdir=@srcdir@
16 VPATH=@srcdir@
17 SRCTOP=@top_srcdir@
18 BUILDTOP=../..
19 prefix=@prefix@
20 exec_prefix=@exec_prefix@
21 bindir=@bindir@
22
23 OBJS=mrtest.o
24
25 TARGET=mrtest
26
27 .c.o:
28         $(CC) -c $(ALL_CFLAGS) $<
29
30 all: $(TARGET)
31
32 clean:
33         rm -f $(OBJS) $(TARGET)
34
35 depend:
36
37 install: all
38         $(INSTALL_PROGRAM) mrtest $(bindir)
39
40 $(TARGET): $(OBJS)
41         $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
This page took 0.040945 seconds and 5 git commands to generate.