]> andersk Git - moira.git/blame - update/Makefile.in
DESTDIR support.
[moira.git] / update / 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)
11LDFLAGS=@LDFLAGS@
12LIBS=@LIBS@
3fb6166b 13MR_LIBDEP=@MR_LIBDEP@
5e6a595c 14INSTALL=@INSTALL@
ea0caf4a 15INSTALL_PROGRAM=@INSTALL_PROGRAM@
16
17srcdir=@srcdir@
18VPATH=@srcdir@
19SRCTOP=@top_srcdir@
20BUILDTOP=..
21prefix=@prefix@
22exec_prefix=@exec_prefix@
23bindir=@bindir@
24sbindir=@sbindir@
2f4d95f0 25sysconfdir=@sysconfdir@
ea0caf4a 26
991417e4 27SOBJS= auth_002.o auth_003.o checksum.o config.o exec_002.o get_file.o \
ea0caf4a 28 update_server.o xfer_002.o xfer_003.o sendrecv.o
29COBJS= update_test.o checksum.o client.o send_file.o ticket.o sendrecv.o
30
31TARGET=update_server update_test
32
33.c.o:
34 $(CC) -c $(ALL_CFLAGS) $<
35
36all: $(TARGET)
37
38clean:
39 rm -f $(SOBJS) $(COBJS) $(TARGET)
40
0bd2b68c 41cleandir distclean: clean
42 rm -f Makefile
43
ea0caf4a 44depend:
45
46install: all
2f4d95f0 47 $(INSTALL_PROGRAM) update_test $(DESTDIR)$(bindir)
48 $(INSTALL_PROGRAM) update_server $(DESTDIR)$(sbindir)
49 $(SRCTOP)/mkinstalldirs $(DESTDIR)$(sysconfdir)/athena
50 $(INSTALL) -m 644 moira.conf $(DESTDIR)$(sysconfdir)/athena/moira.conf
ea0caf4a 51
3fb6166b 52update_test: $(COBJS) $(MR_LIBDEP)
ea0caf4a 53 $(CC) -o $@ $(LDFLAGS) $(COBJS) $(LIBS)
54
3fb6166b 55update_server: $(SOBJS) $(MR_LIBDEP)
ea0caf4a 56 $(CC) -o $@ $(LDFLAGS) $(SOBJS) $(LIBS)
This page took 1.25454 seconds and 5 git commands to generate.