mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-26 06:53:56 +00:00
Initial Commit
This commit is contained in:
17
thirdparty/capstone/suite/benchmark/Makefile
vendored
Normal file
17
thirdparty/capstone/suite/benchmark/Makefile
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
# Sample Makefile for Capstone Disassembly Engine
|
||||
|
||||
LIBNAME = ../../build/libcapstone.a
|
||||
|
||||
all: test_iter_benchmark test_file_benchmark
|
||||
|
||||
test_iter_benchmark: test_iter_benchmark.c
|
||||
${CC} $< -O3 -Wall -o $@ -I../../include $(LIBNAME)
|
||||
|
||||
test_file_benchmark: test_file_benchmark.c
|
||||
${CC} $< -O3 -Wall -o $@ -I../../include $(LIBNAME)
|
||||
|
||||
# %.o: %.c
|
||||
# ${CC} -c $< -o $@
|
||||
|
||||
clean:
|
||||
rm -rf *.o test_iter_benchmark test_file_benchmark
|
Reference in New Issue
Block a user