]> andersk Git - moira.git/blob - clients/moira/Makefile.in
Switch from Imake-based build system to autoconf-based.
[moira.git] / clients / moira / Makefile.in
1 # $Id$
2
3 SHELL=/bin/sh
4 @SET_MAKE@
5
6 CC=@CC@
7 CPPFLAGS=@CPPFLAGS@ @CRYPT_CPPFLAGS@ @CURSES_CPPFLAGS@ @GDSS_CPPFLAGS@
8 CFLAGS=@CFLAGS@
9 DEFS=@DEFS@
10 ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11 LDFLAGS=@LDFLAGS@
12 LIBS=@CRYPT_LIBS@ @CURSES_LIBS@ @GDSS_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
23 MOBJS=  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
26 NOBJS=  namespace.o globals.o lists.o menu.o pobox.o user.o utils.o misc.o
27 OBJS=   ${MOBJS} ${NOBJS}
28
29 TARGET=moira namespace
30
31 .c.o:
32         $(CC) -c $(ALL_CFLAGS) $<
33
34 all: $(TARGET)
35
36 clean:
37         rm -f $(OBJS) $(TARGET)
38
39 depend:
40
41 install: 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
48 moira: $(MOBJS)
49         $(CC) -o $@ $(LDFLAGS) $(MOBJS) $(LIBS)
50
51 namespace: $(NOBJS)
52         $(CC) -o $@ $(LDFLAGS) $(NOBJS) $(LIBS)
This page took 0.049536 seconds and 5 git commands to generate.