mirror of
https://github.com/nextcloud/contacts.git
synced 2024-10-06 08:04:56 +02:00
2b1714b125
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
21 lines
488 B
Makefile
21 lines
488 B
Makefile
# This file is licensed under the Affero General Public License version 3 or
|
|
# later. See the COPYING file.
|
|
|
|
app_name=$(notdir $(CURDIR))
|
|
project_directory=$(CURDIR)/../$(app_name)
|
|
appstore_build_directory=$(CURDIR)/build/artifacts
|
|
appstore_package_name=$(appstore_build_directory)/$(app_name)
|
|
|
|
all: appstore
|
|
|
|
# Cleaning
|
|
clean:
|
|
rm -rf js
|
|
|
|
clean-dev:
|
|
rm -rf node_modules
|
|
rm -rf vendor
|
|
|
|
# Builds the source package for the app store, ignores php and js tests
|
|
appstore:
|
|
krankerl package
|