Initial commit

This commit is contained in:
2026-06-02 02:40:03 +02:00
committed by Madcow
commit 2933a50916
26 changed files with 3527 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
PLATFORM := x86
CONFIG := release
SOLUTION := tools\regfix.sln
MSBUILD := tools\msbuild.bat
.PHONY: build
build:
@echo [CC] Building with config '$(CONFIG)'...
@$(MSBUILD) "$(SOLUTION)" /nologo /verbosity:quiet /t:build \
/p:platform=$(PLATFORM) /p:configuration=$(CONFIG)
.PHONY: clean
clean:
@echo [RM] Cleaning build files...
@$(MSBUILD) "$(SOLUTION)" /nologo /verbosity:quiet \
/t:clean