]> andersk Git - moira.git/blobdiff - clients/chsh/Makefile.in
moved from clients/passwd to clients/chsh
[moira.git] / clients / chsh / Makefile.in
diff --git a/clients/chsh/Makefile.in b/clients/chsh/Makefile.in
new file mode 100644 (file)
index 0000000..399904d
--- /dev/null
@@ -0,0 +1,46 @@
+# $Id$
+
+SHELL=/bin/sh
+@SET_MAKE@
+
+CC=@CC@
+CPPFLAGS=@CPPFLAGS@
+CFLAGS=@CFLAGS@
+DEFS=@DEFS@
+ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
+LDFLAGS=@LDFLAGS@
+LIBS=../lib/libmrclient.a @LIBS@
+MR_LIBDEP=@MR_LIBDEP@
+INSTALL=@INSTALL@
+INSTALL_PROGRAM=@INSTALL_PROGRAM@
+
+srcdir=@srcdir@
+VPATH=@srcdir@
+SRCTOP=@top_srcdir@
+BUILDTOP=../..
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+bindir=@bindir@
+
+TARGET=chsh
+
+OBJS=$(TARGET).o
+
+.c.o:
+       $(CC) -c $(ALL_CFLAGS) $<
+
+all: $(TARGET)
+
+clean:
+       rm -f $(OBJS) $(TARGET)
+
+cleandir distclean: clean
+       rm -f Makefile
+
+depend:
+
+install: all
+       $(INSTALL_PROGRAM) $(TARGET) $(bindir)
+
+$(TARGET): $(OBJS) ../lib/libmrclient.a $(MR_LIBDEP)
+       $(CC) -o $@ $(LDFLAGS) $@.o $(LIBS)
This page took 0.030508 seconds and 4 git commands to generate.