summaryrefslogtreecommitdiff
path: root/apps/gperf/tests/Makefile
blob: 847d03e2b773336eba67d6259fff817b46b1666a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
# $Id$
# Copyright (C) 1989, 1992, 1993 Free Software Foundation, Inc.
# written by Douglas C. Schmidt (schmidt@ics.uci.edu)
#
# This file is part of GNU GPERF.
#
# GNU GPERF is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 1, or (at your option)
# any later version.
#
# GNU GPERF is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU GPERF; see the file COPYING.  If not, write to the Free
# Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA.

#----------------------------------------------------------------------------
#	Include macros and targets
#----------------------------------------------------------------------------

LDLIBS =   -lACE

srcdir = .
GPERF = ../src/gperf

PROG_SRCS = \
	test.cpp \
	cinset.cpp \
	c++inset.cpp \
	iinset.cpp \
	iinset2.cpp \
	tinset.cpp \
	pinset.cpp \
	m3inset.cpp \
	adainset.cpp \
	preinset.cpp

SRC = $(PROG_SRCS)

COUT_OBJS = test.o \
	    cinset.o

AOUT_OBJS = test.o \
	    adainset.o

CPPOUT_OBJS = test.o \
	      c++inset.o

PREOUT_OBJS = test.o \
	      preinset.o

M3OUT_OBJS = test.o \
	     m3inset.o

POUT_OBJS = test.o \
	    pinset.o

IOUT_OBJS = test.o \
	    iinset.o

IOUT2_OBJS = test.o \
	     iinset2.o

TOUT_OBJS = test.o \
	    tinset.o

BIN2 =  cout \
	aout \
	c++out \
	preout \
	m3out \
	pout \
	iout \
	iout2 \
	tout

BUILD = $(BIN)
BUILD+=runtests
VLDLIBS = $(LDLIBS:%=%$(VAR))
VBIN = $(BIN:%=%$(VAR))

#----------------------------------------------------------------------------
#	Include macros and targets
#----------------------------------------------------------------------------

include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU


#----------------------------------------------------------------------------
#	Local targets
#----------------------------------------------------------------------------
#rules to make the gperf generated source files..

all: cout \
	aout \
	c++out \
	preout \
	m3out \
	pout \
	iout \
	iout2 \
	tout \
	runtests

cinset.cpp: $(srcdir)/c.gperf $(GPERF)
	$(GPERF) -a -p -c -l -S1 -o $(srcdir)/c.gperf > $@

adainset.cpp: $(srcdir)/ada.gperf $(GPERF)
	$(GPERF)  -a -k1,4,'$$' $(srcdir)/ada.gperf > $@

c++inset.cpp: $(srcdir)/c++.gperf $(GPERF)
	$(GPERF) -a -D $(srcdir)/c++.gperf > $@

preinset.cpp: $(srcdir)/adadefs.gperf $(GPERF)
	$(GPERF)  -a -p -D -k1,'$$' -s 2 -o $(srcdir)/adadefs.gperf > $@

m3inset.cpp: $(srcdir)/modula3.gperf $(GPERF)
	     $(GPERF) -a -k1,2,'$$' -o $(srcdir)/modula3.gperf > $@

pinset.cpp: $(srcdir)/pascal.gperf $(GPERF)
	$(GPERF) -a -o -S2 -p < $(srcdir)/pascal.gperf > $@

iinset.cpp: $(srcdir)/idl.gperf $(GPERF)
	$(GPERF) -m -M -c -C -D -S1 -E -T -a -o -p < $(srcdir)/idl.gperf > $@

# no S1 flag in this case..
iinset2.cpp: $(srcdir)/idl.gperf $(GPERF)
	$(GPERF) -m -M -c -C -D -E -T -a -o -p $(srcdir)/idl.gperf > $@

tinset.cpp:  $(srcdir)/corba.gperf $(GPERF)
	$(GPERF) -a -o < $(srcdir)/corba.gperf > $@

#rules to make the test executables

cout:$(addprefix $(VDIR),$(COUT_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

aout:$(addprefix $(VDIR),$(AOUT_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

c++out:$(addprefix $(VDIR),$(CPPOUT_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

preout:$(addprefix $(VDIR),$(PREOUT_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

m3out:$(addprefix $(VDIR),$(M3OUT_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

pout:$(addprefix $(VDIR),$(POUT_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

iout:$(addprefix $(VDIR),$(IOUT_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

iout2:$(addprefix $(VDIR),$(IOUT2_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

tout:$(addprefix $(VDIR),$(TOUT_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

runtests: cout aout c++out preout m3out pout iout iout2 tout
	@echo "performing some tests of the perfect hash generator"
	# test cout
	./cout -v < $(srcdir)/c.gperf > c.out
	-diff -b $(srcdir)/c.exp c.out
	# test aout
	./aout -v < $(srcdir)/ada.gperf > ada-res.out
	-diff -b $(srcdir)/ada-res.exp ada-res.out
	# test c++out
	./c++out -v < $(srcdir)/c++.gperf > c++-res.out
	-diff -b $(srcdir)/c++-res.exp c++-res.out
	# test preout
	./preout -v < $(srcdir)/adadefs.gperf > ada-pred.out
	-diff -b $(srcdir)/ada-pred.exp ada-pred.out
	# test m3out
	./m3out -v < $(srcdir)/modula3.gperf > modula.out
	-diff -b $(srcdir)/modula.exp modula.out
	# test pout
	./pout -v < $(srcdir)/pascal.gperf > pascal.out
	-diff -b $(srcdir)/pascal.exp pascal.out
	# test iout
	./iout -v < $(srcdir)/idl.gperf > idl.out
	-diff -b $(srcdir)/idl.exp idl.out
	# test iout2
	./iout2 -v < $(srcdir)/idl.gperf > idl.out
	-diff -b $(srcdir)/idl.exp idl.out
	#test tout
	./tout -v < $(srcdir)/corba.gperf > corba.out
	-diff -b $(srcdir)/corba.exp corba.out
# these next 5 are demos that show off the generated code
	$(GPERF) -p -j1 -o -t -N is_reserved_word -k1,3,'$$' < $(srcdir)/c-parse.gperf | egrep -v 'ing time is ' > test-1.out
	-diff -b $(srcdir)/test-1.exp test-1.out
	$(GPERF) -n -k1-8 -l <$(srcdir)/modula2.gperf | egrep -v 'ing time is ' > test-2.out
	-diff -b $(srcdir)/test-2.exp test-2.out
	$(GPERF) -p -j 1 -o -a -C -g -t -k1,4,$$ < $(srcdir)/gplus.gperf | egrep -v 'ing time is ' > test-3.out
	-diff -b $(srcdir)/test-3.exp test-3.out
	$(GPERF) -D -p -t < $(srcdir)/c-parse.gperf | egrep -v 'ing time is ' > test-4.out
	-diff -b $(srcdir)/test-4.exp test-4.out
	$(GPERF) -g -o -j1 -t -p -N is_reserved_word < $(srcdir)/gpc.gperf | egrep -v 'ing time is ' > test-5.out
	-diff -b $(srcdir)/test-5.exp test-5.out
# prints out the help message
	-$(GPERF) -a -h > test-6.out 2>&1 || [ a = a ]
	-diff -b $(srcdir)/test-6.exp test-6.out
	./aout -v < $(srcdir)/c.gperf > test-7.out
	-diff -b $(srcdir)/test-7.exp test-7.out

realclean:
	$(RM) -rf *.out cinset.cpp c++inset.cpp iinset.cpp iinset2.cpp \
	tinset.cpp pinset.cpp m3inset.cpp adainset.cpp preinset.cpp
	$(RM) -rf c.out aout preout m3out pout cout c++out iout iout2 tout

# DO NOT DELETE THIS LINE -- g++dep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.


.obj/test.o .obj/test.so .shobj/test.o .shobj/test.so: test.cpp \
 $(ACE_ROOT)/ace/OS.h \
 $(ACE_ROOT)/ace/pre.h \
 $(ACE_ROOT)/ace/post.h \
 $(ACE_ROOT)/ace/ace_wchar.h \
 $(ACE_ROOT)/ace/ACE_export.h \
 $(ACE_ROOT)/ace/svc_export.h \
 $(ACE_ROOT)/ace/OS_Dirent.h \
 $(ACE_ROOT)/ace/OS_Export.h \
 $(ACE_ROOT)/ace/OS_Dirent.inl \
 $(ACE_ROOT)/ace/OS_String.h \
 $(ACE_ROOT)/ace/OS_String.inl \
 $(ACE_ROOT)/ace/OS_Memory.h \
 $(ACE_ROOT)/ace/OS_Memory.inl \
 $(ACE_ROOT)/ace/OS_TLI.h \
 $(ACE_ROOT)/ace/OS_TLI.inl \
 $(ACE_ROOT)/ace/Min_Max.h \
 $(ACE_ROOT)/ace/streams.h \
 $(ACE_ROOT)/ace/Basic_Types.h \
 $(ACE_ROOT)/ace/Basic_Types.i \
 $(ACE_ROOT)/ace/Trace.h \
 $(ACE_ROOT)/ace/OS.i \
 $(ACE_ROOT)/ace/Log_Msg.h \
 $(ACE_ROOT)/ace/Log_Record.h \
 $(ACE_ROOT)/ace/Log_Priority.h \
 $(ACE_ROOT)/ace/Log_Record.i

# IF YOU PUT ANYTHING HERE IT WILL GO AWAY