mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 02:07:02 +03:00
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."
10 lines
292 B
Makefile
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
|