]> andersk Git - moira.git/blob - clients/mailmaint/Makefile.in
Switch from Imake-based build system to autoconf-based.
[moira.git] / clients / mailmaint / Makefile.in
1 # $Id$
2
3 SHELL=/bin/sh
4 @SET_MAKE@
5
6 CC=@CC@
7 CPPFLAGS=@CPPFLAGS@ @CURSES_CPPFLAGS@
8 CFLAGS=@CFLAGS@
9 DEFS=@DEFS@
10 ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11 LDFLAGS=@LDFLAGS@
12 LIBS=@CURSES_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=mailmaint.o
24
25 TARGET=mailmaint
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) mailmaint $(bindir)
39
40 $(TARGET): $(OBJS)
41         $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
This page took 0.037953 seconds and 5 git commands to generate.