]> andersk Git - moira.git/blobdiff - clients/blanche/Makefile
Initial revision
[moira.git] / clients / blanche / Makefile
diff --git a/clients/blanche/Makefile b/clients/blanche/Makefile
new file mode 100644 (file)
index 0000000..984d57c
--- /dev/null
@@ -0,0 +1,33 @@
+# Makefile for SMS clients blanche
+#
+#      MIT Project Athena
+#
+#      $Source$
+#      $Header$
+#      $Author$
+# 
+#
+DESTDIR=
+DEFINES = -O
+CFLAGS = -I../../include ${DEFINES}
+BINDIR = ${DESTDIR}/bin
+
+SMSLIB = -L../../lib -lsms -lgdb -lcom_err -lkrb -ldes
+
+PROGS= blanche
+
+all:   ${PROGS}
+
+blanche: blanche.o
+       rm -f blanche
+       cc -o blanche blanche.o ${SMSLIB}
+
+lint:
+       lint *.c
+
+clean: 
+       rm -f *.o *~
+       rm -f ${PROGS}
+
+install:       ${PROGS}
+       install -s blanche ${DESTDIR}/usr/athena/blanche
This page took 0.031267 seconds and 4 git commands to generate.