mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-14 19:47:43 +00:00
This makes it possible to run `set NODELPHI=1`, `nmake build` and then only non-Delphi projects will be built.
53 lines
No EOL
775 B
Makefile
53 lines
No EOL
775 B
Makefile
|
|
!include ..\Defines.mak
|
|
|
|
build:
|
|
!ifdef NODELPHI
|
|
echo Skipping global
|
|
!else
|
|
cd $(ROOT)\src\global\delphi
|
|
$(MAKE) $(TARGET)
|
|
|
|
cd $(ROOT)\src\global\help
|
|
$(MAKE) $(TARGET)
|
|
|
|
cd $(ROOT)\src\global\inst
|
|
$(MAKE) $(TARGET)
|
|
|
|
cd $(ROOT)\src\global\wix
|
|
$(MAKE) $(TARGET)
|
|
!endif
|
|
|
|
build-release:
|
|
@rem
|
|
|
|
clean:
|
|
-del $(ROOT)\src\global\delphi\general\keymanversion_build.inc
|
|
-del $(ROOT)\src\global\inc\keymanversion_build.h
|
|
|
|
cd $(ROOT)\src\global\delphi
|
|
$(MAKE) clean
|
|
|
|
cd $(ROOT)\src\global\help
|
|
$(MAKE) clean
|
|
|
|
cd $(ROOT)\src\global\inst
|
|
$(MAKE) clean
|
|
|
|
cd $(ROOT)\src\global\wix
|
|
$(MAKE) clean
|
|
|
|
signcode:
|
|
@rem no signcode
|
|
|
|
test-manifest:
|
|
@rem
|
|
|
|
wrap-symbols:
|
|
@rem
|
|
|
|
install:
|
|
cd $(ROOT)\src\global\delphi
|
|
$(MAKE) install
|
|
|
|
!include ..\target.mak |