]> andersk Git - moira.git/blob - update/Makefile.in
6f2dbf4efdfee36db12986ca47b3b3a3c908e6bd
[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 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 sbindir=@sbindir@
23
24 SOBJS=  auth_002.o checksum.o config.o exec_002.o get_file.o \
25         update_server.o xfer_002.o xfer_003.o sendrecv.o
26 COBJS=  update_test.o checksum.o client.o send_file.o ticket.o sendrecv.o
27
28 TARGET=update_server update_test
29
30 .c.o:
31         $(CC) -c $(ALL_CFLAGS) $<
32
33 all: $(TARGET)
34
35 clean:
36         rm -f $(SOBJS) $(COBJS) $(TARGET)
37
38 depend:
39
40 install: all
41         $(INSTALL_PROGRAM) update_test $(bindir)
42         $(INSTALL_PROGRAM) update_server $(sbindir)
43
44 update_test: $(COBJS)
45         $(CC) -o $@ $(LDFLAGS) $(COBJS) $(LIBS)
46
47 update_server: $(SOBJS)
48         $(CC) -o $@ $(LDFLAGS) $(SOBJS) $(LIBS)
This page took 0.063986 seconds and 3 git commands to generate.