]> andersk Git - moira.git/blob - clients/passwd/Makefile.in
Switch from Imake-based build system to autoconf-based.
[moira.git] / clients / passwd / 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=@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=chfn.o chpobox.o chsh.o
24
25 TARGET=chfn chpobox chsh
26
27 .c.o:
28         $(CC) -c $(ALL_CFLAGS) $<
29
30 all: $(TARGET)
31
32 clean:
33         rm -f $(OBJS) $(TARGET)
34
35 depend:
36
37 install: all
38         $(INSTALL_PROGRAM) chfn $(bindir)
39         $(INSTALL_PROGRAM0 chpobox $(bindir)
40         $(INSTALL_PROGRAM) chsh $(bindir)
41
42 chfn: chfn.o
43         $(CC) -o $@ $(LDFLAGS) $@.o $(LIBS)
44
45 chpobox: chpobox.o
46         $(CC) -o $@ $(LDFLAGS) $@.o $(LIBS)
47
48 chsh: chsh.o
49         $(CC) -o $@ $(LDFLAGS) $@.o $(LIBS)
This page took 0.069087 seconds and 5 git commands to generate.