mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 10:55:33 +00:00
While it may be smarter to move to a different build system altogether, it is also a *lot* more work. This was a fairly minor syntax refresh to get nmake working with our existing Makefile system. This is now no longer compatible with Borland make, so you will need to use `nmake` to build. The presence of NMAKE.md informs builds systems that nmake should be used instead of make.
16 lines
335 B
Makefile
16 lines
335 B
Makefile
#
|
|
# Samples Makefile
|
|
#
|
|
|
|
TARGETS=imsample
|
|
!include ..\..\Header.mak
|
|
|
|
imsample: .virtual
|
|
cd $(ROOT)\src\developer\samples\imsample
|
|
$(MAKE) $(TARGET)
|
|
|
|
!include ..\..\Target.mak
|
|
|
|
# ----------------------------------------------------------------------
|
|
# EOF
|
|
# ----------------------------------------------------------------------
|