summaryrefslogtreecommitdiff
path: root/zwgc
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1989-11-16 05:22:01 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1989-11-16 05:22:01 +0000
commit6cb5bbbf28a363b08dc30543c9603709708a5fc5 (patch)
tree26ea15e5bcfc216d31e431a1579569c554d35423 /zwgc
parentc5cde31d770a9a0376b2ee18d091bdc3a8d0c050 (diff)
change calling of generate_stack_instance and generate_dictionary_instance\
to pass in the source dir
Diffstat (limited to 'zwgc')
-rw-r--r--zwgc/Imakefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/zwgc/Imakefile b/zwgc/Imakefile
index 5c28aef..2491e40 100644
--- a/zwgc/Imakefile
+++ b/zwgc/Imakefile
@@ -91,33 +91,33 @@ parser.o: parser.y
# /* How to generate a port dictionary: */
#
port_dictionary.c port_dictionary.h: Dictionary/dictionary.c Dictionary/dictionary.h
- Dictionary/generate_dictionary_instance port port.h
+ Dictionary/generate_dictionary_instance ${SRCDIR}/Dictionary port port.h
#
# /* How to generate a pointer dictionary: */
#
pointer_dictionary.c pointer_dictionary.h: Dictionary/dictionary.c Dictionary/dictionary.h
- Dictionary/generate_dictionary_instance pointer pointer.h
+ Dictionary/generate_dictionary_instance ${SRCDIR}/Dictionary pointer pointer.h
#
# /* How to generate a ulong dictionary: */
#
ulong_dictionary.c ulong_dictionary.h: Dictionary/dictionary.c Dictionary/dictionary.h
- Dictionary/generate_dictionary_instance ulong ulong.h
+ Dictionary/generate_dictionary_instance ${SRCDIR}/Dictionary ulong ulong.h
#
# /* How to generate a char stack: */
#
char_stack.h: stack.h
- ./generate_stack_instance char
+ ./generate_stack_instance ${SRCDIR} char
#
# /* How to generate a string stack: */
#
string_stack.h: stack.h
- ./generate_stack_instance string
+ ./generate_stack_instance ${SRCDIR} string
#
# /* How to generate a xmode stack: */
#
xmode_stack.h: stack.h
- ./generate_stack_instance xmode
+ ./generate_stack_instance ${SRCDIR} xmode