]> andersk Git - moira.git/blame - clients/moira/Makefile.in
Switch from Imake-based build system to autoconf-based.
[moira.git] / clients / moira / Makefile.in
CommitLineData
ea0caf4a 1# $Id$
2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
7CPPFLAGS=@CPPFLAGS@ @CRYPT_CPPFLAGS@ @CURSES_CPPFLAGS@ @GDSS_CPPFLAGS@
8CFLAGS=@CFLAGS@
9DEFS=@DEFS@
10ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11LDFLAGS=@LDFLAGS@
12LIBS=@CRYPT_LIBS@ @CURSES_LIBS@ @GDSS_LIBS@ @LIBS@
13INSTALL_PROGRAM=@INSTALL_PROGRAM@
14
15srcdir=@srcdir@
16VPATH=@srcdir@
17SRCTOP=@top_srcdir@
18BUILDTOP=../..
19prefix=@prefix@
20exec_prefix=@exec_prefix@
21bindir=@bindir@
22
23MOBJS= attach.o cluster.o delete.o globals.o lists.o main.o menu.o \
24 menus.o nfs.o pobox.o quota.o user.o utils.o dcmmaint.o printer.o \
25 misc.o zephyr.o
26NOBJS= namespace.o globals.o lists.o menu.o pobox.o user.o utils.o misc.o
27OBJS= ${MOBJS} ${NOBJS}
28
29TARGET=moira namespace
30
31.c.o:
32 $(CC) -c $(ALL_CFLAGS) $<
33
34all: $(TARGET)
35
36clean:
37 rm -f $(OBJS) $(TARGET)
38
39depend:
40
41install: all
42 $(INSTALL_PROGRAM) namespace $(bindir)
43 $(INSTALL_PROGRAM) moira $(bindir)
44 ln -s $(bindir)/listmaint moira
45 ln -s $(bindir)/dcmmaint moira
46 ln -s $(bindir)/usermaint moira
47
48moira: $(MOBJS)
49 $(CC) -o $@ $(LDFLAGS) $(MOBJS) $(LIBS)
50
51namespace: $(NOBJS)
52 $(CC) -o $@ $(LDFLAGS) $(NOBJS) $(LIBS)
This page took 0.059829 seconds and 5 git commands to generate.