2012-05-26 14:49:10 +02:00
|
|
|
#=============================================================================
|
|
|
|
# Mscore
|
|
|
|
# Linux Music Score Editor
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002-2007 by Werner Schweer and others
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License version 2.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
#=============================================================================
|
|
|
|
|
2021-02-28 23:23:39 +01:00
|
|
|
$(warning DEPRECATION NOTICE. This method of compiling will soon be removed.)
|
|
|
|
$(warning )
|
|
|
|
$(warning Please use 'build.cmake' instead with these options:)
|
|
|
|
$(warning )
|
|
|
|
$(warning $ $$ cmake -P build.cmake -G "MinGW Makefiles")
|
|
|
|
$(warning )
|
|
|
|
$(warning See https://github.com/musescore/MuseScore/pull/7531 for details.)
|
|
|
|
$(warning )
|
|
|
|
|
2020-04-20 12:11:59 +02:00
|
|
|
VERSION := $(cmake -P config.cmake | sed -n -e "s/^.*VERSION *//p")
|
2018-07-17 16:08:03 +02:00
|
|
|
BUILD_NUMBER=""
|
2015-08-09 12:09:17 +02:00
|
|
|
CPUS = %NUMBER_OF_PROCESSORS%
|
2017-04-26 18:55:54 +02:00
|
|
|
BUILD_FOR_WINSTORE="OFF" # Override with "ON" to enable.
|
2019-12-20 15:22:27 +01:00
|
|
|
TELEMETRY_TRACK_ID=""
|
2017-04-26 18:55:54 +02:00
|
|
|
|
2012-05-26 14:49:10 +02:00
|
|
|
|
|
|
|
release:
|
2012-07-20 18:32:35 +02:00
|
|
|
if not exist build.release\nul mkdir build.release
|
2012-05-26 14:49:10 +02:00
|
|
|
if not exist win32install\nul mkdir win32install
|
2020-07-12 22:52:53 +02:00
|
|
|
cd build.release & cmake -G "MinGW Makefiles" -DCMAKE_INSTALL_PREFIX=../win32install -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_MAKE_PROGRAM=mingw32-make.exe -DBUILD_FOR_WINSTORE=${BUILD_FOR_WINSTORE} -DTELEMETRY_TRACK_ID=${TELEMETRY_TRACK_ID} ..
|
2012-07-20 18:32:35 +02:00
|
|
|
cd build.release & $(MAKE) lrelease
|
|
|
|
cd build.release & $(MAKE) -j ${CPUS}
|
2012-05-26 14:49:10 +02:00
|
|
|
|
|
|
|
debug:
|
2012-07-20 18:32:35 +02:00
|
|
|
if not exist build.debug\nul mkdir build.debug
|
2012-05-26 14:49:10 +02:00
|
|
|
if not exist win32install\nul mkdir win32install
|
2020-07-12 22:52:53 +02:00
|
|
|
cd build.debug & cmake -G "MinGW Makefiles" -DCMAKE_INSTALL_PREFIX=../win32install -DCMAKE_BUILD_TYPE=DEBUG -DCMAKE_MAKE_PROGRAM=mingw32-make.exe -DBUILD_FOR_WINSTORE=${BUILD_FOR_WINSTORE} ..
|
2012-07-20 18:32:35 +02:00
|
|
|
cd build.debug & $(MAKE) lrelease
|
|
|
|
cd build.debug & $(MAKE) -j ${CPUS}
|
2012-05-26 14:49:10 +02:00
|
|
|
|
|
|
|
install:
|
2017-04-26 18:55:54 +02:00
|
|
|
cd build.release & $(MAKE) -j ${CPUS} install
|
2012-07-20 18:32:35 +02:00
|
|
|
|
|
|
|
installdebug:
|
2017-04-26 18:55:54 +02:00
|
|
|
cd build.debug & $(MAKE) -j ${CPUS} install
|
2012-05-26 14:49:10 +02:00
|
|
|
|
|
|
|
package:
|
2012-07-20 18:32:35 +02:00
|
|
|
cd build.release & $(MAKE) package
|
2012-05-26 14:49:10 +02:00
|
|
|
|
2020-11-17 09:06:50 +01:00
|
|
|
revision:
|
|
|
|
git rev-parse --short=7 HEAD > local_build_revision.env
|
|
|
|
|
2012-05-26 14:49:10 +02:00
|
|
|
version:
|
|
|
|
@echo ${VERSION}
|
|
|
|
|
|
|
|
#
|
|
|
|
# clean out of source build
|
|
|
|
#
|
|
|
|
|
|
|
|
clean:
|
2012-07-20 18:32:35 +02:00
|
|
|
-rmdir /S/Q build.debug build.release win32install
|