]> andersk Git - moira.git/blobdiff - regtape/Makefile
Initial revision
[moira.git] / regtape / Makefile
diff --git a/regtape/Makefile b/regtape/Makefile
new file mode 100644 (file)
index 0000000..be4e68a
--- /dev/null
@@ -0,0 +1,42 @@
+#
+#      $Source$
+#      $Header$
+#
+
+#
+#      Makefile for the sms stuff --mark roman 7/6/87
+#
+CFILES = adduser.c rafnu.c
+OFILES = adduser.o rafnu.o
+OUTP   = regtape
+
+DESTDIR =
+
+# Note that -lkrb is used, but not -ldes, since smsglue only calls 
+# get_krbrlm()
+
+LIBS   =  ../server/libsmsglue.a ../rpc/libsms.a -lcom_err -lkrb \
+       /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
+CFLAGS  = -I../include -L../lib
+
+all:   $(OUTP)
+
+debug: 
+       cc $(CFLAGS) -DDEBUG -c adduser.c 
+
+
+$(OUTP): $(OFILES)
+        cc -o $(OUTP) $(CFLAGS) $(OFILES) $(LIBS)
+
+ci:
+       ci $(CFILES) 
+
+clean: 
+       rm -f $(OUTP) $(OFILES) core
+       rm -f *~ *.o
+
+lint: 
+       lint $(CFILES)
+
+install:
+       install regtape ../bin/regtape
This page took 0.108362 seconds and 4 git commands to generate.