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