summaryrefslogtreecommitdiff
path: root/zwgc
diff options
context:
space:
mode:
authorGravatar Greg Hudson <ghudson@mit.edu>1996-08-27 12:28:13 +0000
committerGravatar Greg Hudson <ghudson@mit.edu>1996-08-27 12:28:13 +0000
commit0415965d8fd7420417895e189c9c79f67cfaf0a6 (patch)
tree26d5d7ed56342610198af7e4a78d5fd78d7e5692 /zwgc
parent95bc97e24fcbff897f837117cd54afac1a54a758 (diff)
This file was deleted in the 8.0 source tree
Diffstat (limited to 'zwgc')
-rwxr-xr-xzwgc/Dictionary/generate_dictionary_instance36
-rwxr-xr-xzwgc/generate_stack_instance36
2 files changed, 0 insertions, 72 deletions
diff --git a/zwgc/Dictionary/generate_dictionary_instance b/zwgc/Dictionary/generate_dictionary_instance
deleted file mode 100755
index 444d51b..0000000
--- a/zwgc/Dictionary/generate_dictionary_instance
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/csh -f
-# This file is part of the Project Athena Zephyr Notification System.
-# It is a tool used in the compilation of zwgc, the Zephyr WindowGram
-# client.
-#
-# Created by: Marc Horowitz <marc@athena.mit.edu>
-#
-# $Source$
-# $Author$
-# $Id$
-#
-# Copyright (c) 1989 by the Massachusetts Institute of Technology.
-# For copying and distribution information, see the file
-# "mit-copyright.h".
-#
-
-set source=$1
-shift
-
-if (z$1x == zx) then
- echo "usage: generate_dictionary_instance <srcdir> <typename> [<include file>]"
- exit 1
-endif
-if (-r $source/dictionary.c) then
-else
- echo "generate_dictionary_instance: unable to open" $source/dictionary.c
- exit 2
-endif
-
-if (z$2x == zx) then
- echo > $1_dictionary.h
-else
- echo "#include" '"'$2'"' > $1_dictionary.h
-endif
-sed "s/TYPE_T/$1/g" $source/dictionary.h >> $1_dictionary.h
-sed "s/TYPE_T/$1/g" $source/dictionary.c > $1_dictionary.c
diff --git a/zwgc/generate_stack_instance b/zwgc/generate_stack_instance
deleted file mode 100755
index da237ca..0000000
--- a/zwgc/generate_stack_instance
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/csh -f
-
-# This file is part of the Project Athena Zephyr Notification System.
-# It is one of the source files comprising zwgc, the Zephyr WindowGram
-# client.
-#
-# Created by: Marc Horowitz <marc@athena.mit.edu>
-#
-# $Source$
-# $Author$
-#
-# Copyright (c) 1989 by the Massachusetts Institute of Technology.
-# For copying and distribution information, see the file
-# "mit-copyright.h".
-#
-set rcsid_generate_stack_instance='$Id$'
-
-set source=$1
-shift
-
-if (z$1x == zx) then
- echo "usage: generate_stack_instance <srcdir> <typename> [<include file>]"
- exit 1
-endif
-if (-r $source/stack.h) then
-else
- echo "generate_stack_instance: unable to open" $source/stack.h
- exit 2
-endif
-
-if (z$2x == zx) then
- echo > $1_stack.h
-else
- echo "#include" '"'$2'"' > $1_stack.h
-endif
-sed "s/TYPE_T/$1/g" $source/stack.h >> $1_stack.h