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