18 lines
296 B
Makefile
18 lines
296 B
Makefile
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
|