diff options
author | comex | 2015-01-13 01:13:19 -0500 |
---|---|---|
committer | comex | 2015-01-13 01:16:42 -0500 |
commit | 6e12e61377daad6e9444da718b72a2612fcd2876 (patch) | |
tree | c82b1db95b1a1a55ddf468a5364480e1697198aa /Makefile | |
parent | small thumb fixes for Rdn and stuff (diff) | |
download | substitute-6e12e61377daad6e9444da718b72a2612fcd2876.tar.gz |
add a test assembly file, not used yet
Diffstat (limited to '')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -51,6 +51,13 @@ $(eval $(call define_test,find-syms,find-syms,$(CC) -std=c89)) $(eval $(call define_test,find-syms-cpp,find-syms,$(CXX) -x c++ -std=c++98)) $(eval $(call define_test,substrate,substrate,$(CXX) -std=c++98)) +out/arm-insns.o: test/arm-insns.S Makefile + clang -arch armv7 -c -o $@ $< +out/thumb2-insns.o: test/arm-insns.S Makefile + clang -arch armv7 -DTHUMB2 -c -o $@ $< +out/%-insns.bin: out/%-insns.o Makefile + segedit -extract __TEXT __text $@ $< + generated: Makefile rm -rf generated mkdir generated |