blob: a9c235037e26c2958bf2f76124672d97a9154e3e [file] [log] [blame]
Chris Lattnere62c1182002-12-02 01:23:04 +00001LEVEL = ../..
2TOOLNAME = tblgen
3USEDLIBS = support.a
4
5include $(LEVEL)/Makefile.common
6
7clean::
8 -rm -f FileParser.cpp FileParser.h FileLexer.cpp CommandLine.cpp
9 -rm -f FileParser.output
10
11test::
12 $(TOOLEXENAME_G) < X86.td
13 # -parse
14
15 @echo "enum {"
16 @$(TOOLEXENAME_G) < X86.td -class=Register
17 @echo
18 @echo "};"
19
20 @echo "enum {"
21 @$(TOOLEXENAME_G) < X86.td -class=Instruction
22 @echo
23 @echo "};"