summaryrefslogtreecommitdiff
path: root/Makefile.win
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2022-02-01 16:34:18 -0500
committerGlenn Smith <glenn@vector35.com>2022-02-02 19:22:08 -0500
commitb8af211f9a3647687c7e45c0fd04b0768df87ffe (patch)
tree64f13fe262399189d70aadf33e1c6e33f0a74c3e /Makefile.win
parent5f5785fd2b1cee6bc9a082e1209de00b1497d410 (diff)
Fancier CMake: find scripts, out-of-tree example builds
Diffstat (limited to 'Makefile.win')
-rw-r--r--Makefile.win67
1 files changed, 0 insertions, 67 deletions
diff --git a/Makefile.win b/Makefile.win
deleted file mode 100644
index 6073acda..00000000
--- a/Makefile.win
+++ /dev/null
@@ -1,67 +0,0 @@
-CFLAGS = /EHsc /DWIN32 /nologo
-
-TARGETDIR = bin
-TARGETNAME = libbinaryninjaapi.lib
-TARGET = .\$(TARGETDIR)\$(TARGETNAME)
-
-OBJS = \
- architecture.obj \
- backgroundtask.obj \
- basicblock.obj \
- binaryninjaapi.obj \
- binaryreader.obj \
- binaryview.obj \
- binaryviewtype.obj \
- binarywriter.obj \
- callingconvention.obj \
- databuffer.obj \
- datarenderer.obj \
- downloadprovider.obj \
- demangle.obj \
- fileaccessor.obj \
- filemetadata.obj \
- flowgraph.obj \
- flowgraphnode.obj \
- function.obj \
- functionrecognizer.obj \
- highlevelil.obj \
- highlevelilinstruction.obj \
- interaction.obj \
- linearviewcursor.obj \
- linearviewobject.obj \
- log.obj \
- lowlevelil.obj \
- lowlevelilinstruction.obj \
- mainthread.obj \
- mediumlevelil.obj \
- mediumlevelilinstruction.obj \
- metadata.obj \
- platform.obj \
- plugin.obj \
- pluginmanager.obj \
- relocationhandler.obj \
- scriptingprovider.obj \
- settings.obj \
- tempfile.obj \
- transform.obj \
- type.obj \
- undoaction.obj \
- update.obj \
- user.obj \
- jsoncpp.obj
-
-$(TARGET): $(OBJS)
- if not exist $(TARGETDIR) mkdir $(TARGETDIR)
- lib $(OBJS) /OUT:$(TARGET)
-
-jsoncpp.obj: json\jsoncpp.cpp
- cl $(CFLAGS) /I. /c json\jsoncpp.cpp
-
-# nmake "inference rules" are gnu make "pattern rules"
-.cpp.obj:
- cl $(CFLAGS) /c $<
-
-clean:
- if exist *.obj del *.obj
- if exist $(TARGETDIR) del /Q /S $(TARGETDIR)
-