summaryrefslogtreecommitdiff
path: root/zwgc/Dictionary/Imakefile
diff options
context:
space:
mode:
Diffstat (limited to 'zwgc/Dictionary/Imakefile')
-rw-r--r--zwgc/Dictionary/Imakefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/zwgc/Dictionary/Imakefile b/zwgc/Dictionary/Imakefile
deleted file mode 100644
index 2bae6c7..0000000
--- a/zwgc/Dictionary/Imakefile
+++ /dev/null
@@ -1,32 +0,0 @@
-/**/# Copyright 1988, 1993 Massachusetts Institute of Technology.
-/**/#
-/**/# For copying and distribution information, see the file
-/**/# "mit-copyright.h".
-/**/#
-/**/# $Id$
-
-OBJS = string_dictionary_aux.o int_dictionary.o string_dictionary.o
-SRCS = string_dictionary_aux.c int_dictionary.c string_dictionary.c
-
-XDEFS = -I../String -I../Memory
-
-all:: string_dictionary.h dictionary_spec $(OBJS)
-depend:: $(SRCS)
-
-/**/# Automatically generate a spec file from the template include file:
-dictionary_spec: dictionary.h
- cat dictionary.h | grep "^.\*" | grep -v "^ \*/" | sed 's/.\*//' > dictionary_spec
-
-/**/# Generate a int dictionary instance:
-int_dictionary.c int_dictionary.h: dictionary.c dictionary.h
- ../generate_instance . dictionary int
-
-/**/# Generate a string dictionary instance:
-string_dictionary.c string_dictionary.h: dictionary.c dictionary.h
- ../generate_instance . dictionary string new_string.h
-
-clean::
- $(RM) $(OBJS) dictionary_spec int_dictionary.c string_dictionary.c \
- int_dictionary.h string_dictionary.h
-
-string_dictionary_aux.o: string_dictionary.h