]> andersk Git - moira.git/blob - clients/addusr/Makefile.in
Switch from Imake-based build system to autoconf-based.
[moira.git] / clients / addusr / 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=-lkadm @CRYPT_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 OBJS=addusr.o reg_stubs.o
24
25 TARGET=addusr
26
27 .c.o:
28         $(CC) -c $(ALL_CFLAGS) $<
29
30 all: depend $(TARGET)
31
32 clean:
33         rm -f $(OBJS) $(TARGET) reg_stubs.c
34
35 depend: reg_stubs.c
36
37 install: all
38         $(INSTALL_PROGRAM) -m 755 addusr $(bindir)
39
40 reg_stubs.c: $(SRCTOP)/clients/userreg/reg_stubs.c
41         cp $(SRCTOP)/clients/userreg/reg_stubs.c reg_stubs.c
42
43 $(TARGET): $(OBJS)
44         $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
This page took 0.03759 seconds and 5 git commands to generate.