]> andersk Git - moira.git/commitdiff
cleanup & add copyright message
authormar <mar>
Mon, 12 Sep 1988 13:49:13 +0000 (13:49 +0000)
committermar <mar>
Mon, 12 Sep 1988 13:49:13 +0000 (13:49 +0000)
backup/Makefile
backup/dump_db.qc
backup/dumprest.qc
backup/rest_db.qc

index 754dc1a0715b12553a5d9a3ee0dc7689e190878c..43ad84f5b54a84a7b0ac25c039b601b310dad0c9 100644 (file)
@@ -1,3 +1,9 @@
+# $Header$
+#
+# (c) Copyright 1988 by the Massachusetts Institute of Technology.
+# For copying and distribution information, please see the file
+# <mit-copyright.h>.
+
 .SUFFIXES:
 .SUFFIXES: .qc .o
 CFLAGS= -O
@@ -10,7 +16,7 @@ EQLIBS = /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
        cc -c ${CFLAGS} $*.c
        rm -f $*.c
 
-all: smsbackup smsrestore # counts copy_backups
+all: smsbackup smsrestore
 
 smsbackup: dump_db.o bkup1.o bkup.o dumprest.o
        cc -o $@ ${CFLAGS} dump_db.o bkup1.o bkup.o dumprest.o ${EQLIBS}
@@ -18,12 +24,6 @@ smsbackup: dump_db.o bkup1.o bkup.o dumprest.o
 smsrestore: rest_db.o rest1.o rest.o dumprest.o
        cc -o $@ ${CFLAGS} rest_db.o rest1.o rest.o dumprest.o ${EQLIBS}
 
-counts: counts.o
-       cc -o $@ ${CFLAGS} counts.o ${EQLIBS}
-
-salvager: salvager.o
-       cc -o $@ ${CFLAGS} salvager.o ${EQLIBS}
-
 copy_backups: copy_backups.c
        cc -o $@ ${CFLAGS} -I../include copy_backups.c \
                 ../update/sms_update.o -L../lib \
@@ -53,8 +53,6 @@ clean:
 install:
        install smsbackup ../bin/smsbackup
        install smsrestore ../bin/smsrestore
-       install counts ../bin/counts
-       install salvager ../bin/salvager
        install nightly.sh ../bin/nightly.sh
 
 
index 677cda0b580bce9b3fff94c9fd7329c39cef5631..18c5340ccf723d7ec7c067e8db660e13dba1427d 100644 (file)
@@ -3,22 +3,13 @@
  *     $Author$
  *     $Header$
  *
- *     Copyright (C) 1987 by the Massachusetts Institute of Technology
+ *     (c) Copyright 1988 by the Massachusetts Institute of Technology.
+ *     For copying and distribution information, please see the file
+ *     <mit-copyright.h>.
  *
  *     This program dumps the SMS database to a series of output files
  * which can be later read back into SMS in the event of a crash.
  * 
- *     $Log$
- *     Revision 1.3  1988-08-16 16:25:30  mar
- *     con't put extra whitespace in backup files
- *
- * Revision 1.2  87/07/13  03:52:53  wesommer
- * Modified to pass lint, do better backups.
- * 
-Revision 1.1  87/07/11  19:51:05  wesommer
-Initial revision
-
- *
  */
 
 #ifndef lint
@@ -28,6 +19,7 @@ static char *rcsid_dump_db_c = "$Header$";
 #include <stdio.h>
 #include <sys/file.h>
 #include <ctype.h>
+#include <mit-copyright.h>
 
 /* putc without the line buffer hair */
 
index 5c97d7ecaeec9e264a59959ddc2fa0a04445761e..580836a35084e8068d78e25055b268c64f4a3913 100644 (file)
@@ -3,11 +3,9 @@
  *     $Author$
  *     $Header$
  *
- *     Copyright (C) 1987 by the Massachusetts Institute of Technology
- *
- *     $Log$
- *     Revision 1.1  1987-07-13 03:53:09  wesommer
- *     Initial revision
+ *  (c) Copyright 1988 by the Massachusetts Institute of Technology.
+ *  For copying and distribution information, please see the file
+ *  <mit-copyright.h>.
  *
  */
 
@@ -18,6 +16,7 @@ static char *rcsid_dumprest_qc = "$Header$";
 #include <stdio.h>
 #include <sys/file.h>
 #include <strings.h>
+#include <mit-copyright.h>
 
 punt(msg)
        char *msg;
index 3a3d8608dc538de517c213be58ff968223f104fa..4ce571d321a29994207d53366401c9ed4fed3439 100644 (file)
@@ -3,14 +3,9 @@
  *     $Author$
  *     $Header$
  *
- *     Copyright (C) 1987 by the Massachusetts Institute of Technology
- *
- *     $Log$
- *     Revision 1.2  1988-05-10 11:34:37  mar
- *     Throw away rest of field if too long
- *
- * Revision 1.1  87/07/13  03:50:02  wesommer
- * Initial revision
+ *  (c) Copyright 1988 by the Massachusetts Institute of Technology.
+ *  For copying and distribution information, please see the file
+ *  <mit-copyright.h>.
  * 
  */
 
@@ -21,6 +16,8 @@ static char *rcsid_rest_db_qc = "$Header$";
 #include <sys/file.h>
 #include <stdio.h>
 #include <ctype.h>
+#include <mit-copyright.h>
+
 
 /*ARGSUSED*/
 main(argc, argv)
This page took 0.035487 seconds and 5 git commands to generate.