JSRF-Decompilation/objdiff/Makefile
KeybadeBlox 7e1785e466 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."
2025-12-14 19:27:11 -05:00

10 lines
292 B
Makefile

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