]> andersk Git - moira.git/blame - clients/chpobox/Makefile.in
DESTDIR support.
[moira.git] / clients / chpobox / Makefile.in
CommitLineData
4a068fb9 1# $Id$
2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
7CPPFLAGS=@CPPFLAGS@
8CFLAGS=@CFLAGS@
9DEFS=@DEFS@
10ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11LDFLAGS=@LDFLAGS@
12LIBS=../lib/libmrclient.a @LIBS@
13MR_LIBDEP=@MR_LIBDEP@
14INSTALL=@INSTALL@
15INSTALL_PROGRAM=@INSTALL_PROGRAM@
16
17srcdir=@srcdir@
18VPATH=@srcdir@
19SRCTOP=@top_srcdir@
20BUILDTOP=../..
21prefix=@prefix@
22exec_prefix=@exec_prefix@
23bindir=@bindir@
24
25TARGET=chpobox
26
27OBJS=$(TARGET).o
28
29.c.o:
30 $(CC) -c $(ALL_CFLAGS) $<
31
32all: $(TARGET)
33
34clean:
35 rm -f $(OBJS) $(TARGET)
36
37cleandir distclean: clean
38 rm -f Makefile
39
40depend:
41
42install: all
2f4d95f0 43 $(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(bindir)
4a068fb9 44
45$(TARGET): $(OBJS) ../lib/libmrclient.a $(MR_LIBDEP)
46 $(CC) -o $@ $(LDFLAGS) $@.o $(LIBS)
This page took 0.071694 seconds and 5 git commands to generate.