diff options
| author | Andrew Lamoureux <andrew@vector35.com> | 2017-03-15 18:13:07 -0400 |
|---|---|---|
| committer | Andrew Lamoureux <andrew@vector35.com> | 2017-03-15 18:13:07 -0400 |
| commit | 1f7523ce2b1edac1014d781fc771d5b82568e2f1 (patch) | |
| tree | e9595f3a8683461bc0c1e452788183fd7462c4a8 /examples/print_syscalls | |
| parent | 84357311117be3002bc3dd0e402ca32eb81d4cf0 (diff) | |
build explanation, windows make files
Diffstat (limited to 'examples/print_syscalls')
| -rw-r--r-- | examples/print_syscalls/Makefile.win | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/print_syscalls/Makefile.win b/examples/print_syscalls/Makefile.win new file mode 100644 index 00000000..afc0cbd8 --- /dev/null +++ b/examples/print_syscalls/Makefile.win @@ -0,0 +1,9 @@ +BINJA_API_INC_PATH = ..\..\ +BINJA_API_LIB = ..\..\bin\libbinaryninjaapi.lib +BINJA_CORE_LIB = "c:\Program Files\Vector35\BinaryNinja\binaryninjacore.lib" + +FLAGS = /DWIN32 /D__WIN32__ /EHsc /I$(BINJA_API_INC_PATH) /link $(BINJA_API_LIB) $(BINJA_CORE_LIB) + +print_syscalls: ./src/arm-syscall.cpp + if not exist bin mkdir bin + cl ./src/arm-syscall.cpp $(FLAGS) /Fe:.\bin\print_syscalls |
