Add files via upload

This commit is contained in:
Useful Stuffs
2024-02-11 12:51:01 +01:00
committed by GitHub
commit eac708fbdc
96 changed files with 28373 additions and 0 deletions

17
LegacyUpdate/Makefile Normal file
View File

@@ -0,0 +1,17 @@
ifeq ($(CI),1)
MSBUILDFLAGS += /p:PlatformToolset=v141_xp
endif
all:
cmd.exe /c build.cmd $(MSBUILDFLAGS)
ifeq ($(SIGN),1)
../build/sign.sh \
../Release/LegacyUpdate.dll \
../x64/Release/LegacyUpdate.dll
endif
clean:
@# Not needed, build.cmd cleans before it builds
.PHONY: all clean