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