diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-02 16:13:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-02 16:13:42 +0000 |
commit | 24e79094f9d417829f36c4d6ef84c6368e39f98d (patch) | |
tree | 3fa24eae1762c8685399e055f38eb744c9ca8df9 /utils/TableGen/Makefile | |
parent | 07278e48dc27d8ac64b5ff7ed6361536c2f38ea1 (diff) |
Split up targets
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4846 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/Makefile')
-rw-r--r-- | utils/TableGen/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/utils/TableGen/Makefile b/utils/TableGen/Makefile index a9c235037e..667998242f 100644 --- a/utils/TableGen/Makefile +++ b/utils/TableGen/Makefile @@ -8,9 +8,14 @@ clean:: -rm -f FileParser.cpp FileParser.h FileLexer.cpp CommandLine.cpp -rm -f FileParser.output -test:: + +dump:: $(TOOLEXENAME_G) < X86.td - # -parse + +parse: + $(TOOLEXENAME_G) < X86.td -parse + +test:: @echo "enum {" @$(TOOLEXENAME_G) < X86.td -class=Register |