OLD | NEW |
1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # A temporary Makefile to build the DFA-based validator, decoder, tests. This | 5 # A temporary Makefile to build the DFA-based validator, decoder, tests. This |
6 # will likely go away as soon we integrate with the NaCl build system(s). | 6 # will likely go away as soon we integrate with the NaCl build system(s). |
7 | 7 |
8 OUT = out | 8 OUT = out |
9 OUT_DIRS = $(OUT)/build/objs \ | 9 OUT_DIRS = $(OUT)/build/objs \ |
10 $(OUT)/tarballs \ | 10 $(OUT)/tarballs \ |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 $(CC) $(LDFLAGS) "$(OUT)/test/test_dfa.o" \ | 230 $(CC) $(LDFLAGS) "$(OUT)/test/test_dfa.o" \ |
231 "$(OUT)/test/test_dfa_transitions-x86_64.o" \ | 231 "$(OUT)/test/test_dfa_transitions-x86_64.o" \ |
232 -o $(OUT)/test/test_dfa-x86_64 | 232 -o $(OUT)/test/test_dfa-x86_64 |
233 $(PYTHON2X) run_objdump_test.py \ | 233 $(PYTHON2X) run_objdump_test.py \ |
234 --gas="$(GAS) --64" \ | 234 --gas="$(GAS) --64" \ |
235 --objdump="$(OBJDUMP)" \ | 235 --objdump="$(OBJDUMP)" \ |
236 --decoder="$(OBJD)/decoder-test" \ | 236 --decoder="$(OBJD)/decoder-test" \ |
237 --tester=./decoder_test_one_file.sh \ | 237 --tester=./decoder_test_one_file.sh \ |
238 --nthreads=`cat /proc/cpuinfo | grep processor | wc -l` -- \ | 238 --nthreads=`cat /proc/cpuinfo | grep processor | wc -l` -- \ |
239 "$(OUT)/test/test_dfa-x86_64" "$(FAST_TMP_FOR_TEST)" | 239 "$(OUT)/test/test_dfa-x86_64" "$(FAST_TMP_FOR_TEST)" |
OLD | NEW |