mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 10:17:03 +03:00
10 lines
304 B
Makefile
10 lines
304 B
Makefile
all: src/JSRF/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/JSRF/Jet2.obj: src/JSRF/Core.hpp src/XDK/D3D.hpp src/XDK/Win32.hpp\
|
|
src/Std.hpp
|