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