mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 10:17:03 +03:00
Add objdiff setup
This is intended more as a proof of concept as we figure things out than the start of an actual decompilation in this repository. Target object files are currently "bring your own."
This commit is contained in:
parent
10b3c8c273
commit
7e1785e466
12 changed files with 151 additions and 27 deletions
10
objdiff/Makefile
Normal file
10
objdiff/Makefile
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
all: src/Jet2.obj
|
||||
|
||||
# Simple inference rule for producing object files
|
||||
.SUFFIXES: .cpp .obj
|
||||
.cpp.obj:
|
||||
CL.EXE /nologo /Wall /TP /W3 /O2 /G6 /MT /GX /Fo$@ /c $<
|
||||
|
||||
# Header files used for each object
|
||||
src/Jet2.obj: src/Core.hpp src/D3D.hpp src/MMatrix.hpp src/Std.hpp\
|
||||
src/Win32.hpp
|
||||
Loading…
Add table
Add a link
Reference in a new issue