summaryrefslogtreecommitdiff
path: root/examples/breakpoint/Makefile.win
diff options
context:
space:
mode:
Diffstat (limited to 'examples/breakpoint/Makefile.win')
-rw-r--r--examples/breakpoint/Makefile.win16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/breakpoint/Makefile.win b/examples/breakpoint/Makefile.win
deleted file mode 100644
index 00cbbfa1..00000000
--- a/examples/breakpoint/Makefile.win
+++ /dev/null
@@ -1,16 +0,0 @@
-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)
-
-bininfo.dll: ./src/breakpoint.cpp
- if not exist bin mkdir bin
- cl ./src/breakpoint.cpp /LD $(FLAGS) /OUT:.\bin\breakpoint.dll
-
-clean:
- if exist *.obj del *.obj
- if exist *.exp del *.exp
- if exist *.lib del *.lib
- if exist *.dll del *.dll
- if exist .\bin del /S /Q bin