]> andersk Git - moira.git/blame - clients/addusr/Makefile.in
oops. don't rely on stack garbage to initialize our pointers
[moira.git] / clients / addusr / 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@
8c0ce358 12LIBS=@LIBS@
5e6a595c 13INSTALL=@INSTALL@
ea0caf4a 14INSTALL_PROGRAM=@INSTALL_PROGRAM@
15
16srcdir=@srcdir@
17VPATH=@srcdir@
18SRCTOP=@top_srcdir@
19BUILDTOP=../..
20prefix=@prefix@
21exec_prefix=@exec_prefix@
22bindir=@bindir@
23
8c0ce358 24OBJS=addusr.o
ea0caf4a 25
26TARGET=addusr
27
28.c.o:
29 $(CC) -c $(ALL_CFLAGS) $<
30
31all: depend $(TARGET)
32
33clean:
8c0ce358 34 rm -f $(OBJS) $(TARGET)
ea0caf4a 35
8c0ce358 36depend:
ea0caf4a 37
38install: all
39 $(INSTALL_PROGRAM) -m 755 addusr $(bindir)
40
ea0caf4a 41$(TARGET): $(OBJS)
42 $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
This page took 0.131156 seconds and 5 git commands to generate.