summaryrefslogtreecommitdiff
path: root/zwgc/String/Imakefile
blob: e47f68104dfdb502c696ba3fd46863add8a98053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**/#	Copyright 1988, 1993 Massachusetts Institute of Technology.
/**/#
/**/#	For copying and distribution information, see the file
/**/#	"mit-copyright.h". 
/**/#
/**/#	$Id$


OBJS = new_string.o
SRCS = new_string.c

XDEFS= -I../Memory

all:: string_spec $(OBJS)

/**/# Automatically generate a spec file from the template include file:
string_spec: new_string.h
	cat new_string.h | grep "^.\*" | grep -v "^ \*/" | sed 's/.\*//' > string_spec

clean::
	$(RM) $(OBJS) string_spec