]> andersk Git - moira.git/blame - update/Makefile.in
Don't specify AuthType.
[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@
25
991417e4 26SOBJS= auth_002.o auth_003.o checksum.o config.o exec_002.o get_file.o \
ea0caf4a 27 update_server.o xfer_002.o xfer_003.o sendrecv.o
28COBJS= update_test.o checksum.o client.o send_file.o ticket.o sendrecv.o
29
30TARGET=update_server update_test
31
32.c.o:
33 $(CC) -c $(ALL_CFLAGS) $<
34
35all: $(TARGET)
36
37clean:
38 rm -f $(SOBJS) $(COBJS) $(TARGET)
39
0bd2b68c 40cleandir distclean: clean
41 rm -f Makefile
42
ea0caf4a 43depend:
44
45install: all
46 $(INSTALL_PROGRAM) update_test $(bindir)
47 $(INSTALL_PROGRAM) update_server $(sbindir)
48
3fb6166b 49update_test: $(COBJS) $(MR_LIBDEP)
ea0caf4a 50 $(CC) -o $@ $(LDFLAGS) $(COBJS) $(LIBS)
51
3fb6166b 52update_server: $(SOBJS) $(MR_LIBDEP)
ea0caf4a 53 $(CC) -o $@ $(LDFLAGS) $(SOBJS) $(LIBS)
This page took 0.367422 seconds and 5 git commands to generate.