Skip to content

Commit

Permalink
Move enum-print to elf/
Browse files Browse the repository at this point in the history
In preparation for pretty-printing ELF enums
  • Loading branch information
Austin Clements committed Sep 28, 2013
1 parent 9f18331 commit 69d321d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dwarf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ CLEAN += libdwarf++.a $(SRCS:.cc=.o)

$(SRCS:.cc=.o): $(HDRS)

to_string.cc: enum-print.py dwarf++.hh data.hh Makefile
to_string.cc: ../elf/enum-print.py dwarf++.hh data.hh Makefile
@echo "// Automatically generated by make at $$(date)" > to_string.cc
@echo "// DO NOT EDIT" >> to_string.cc
@echo >> to_string.cc
@echo '#include "internal.hh"' >> to_string.cc
@echo >> to_string.cc
@echo 'DWARFPP_BEGIN_NAMESPACE' >> to_string.cc
@echo >> to_string.cc
python enum-print.py < dwarf++.hh >> to_string.cc
python enum-print.py -s _ -u --hex -x hi_user -x lo_user < data.hh >> to_string.cc
python ../elf/enum-print.py < dwarf++.hh >> to_string.cc
python ../elf/enum-print.py -s _ -u --hex -x hi_user -x lo_user < data.hh >> to_string.cc
@echo 'DWARFPP_END_NAMESPACE' >> to_string.cc
CLEAN += to_string.cc

Expand Down
File renamed without changes.

0 comments on commit 69d321d

Please sign in to comment.