From 481c5c8fed0a95fba052995356bbfee71dff4803 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Thu, 11 Sep 2025 13:40:31 +0200 Subject: [PATCH] chore(updatenotification): Remove Makefile Signed-off-by: provokateurin --- apps/updatenotification/Makefile | 58 -------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 apps/updatenotification/Makefile diff --git a/apps/updatenotification/Makefile b/apps/updatenotification/Makefile deleted file mode 100644 index b64cd1a6290..00000000000 --- a/apps/updatenotification/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors -# SPDX-License-Identifier: AGPL-3.0-or-later -app_name=updatenotification - -project_dir=$(CURDIR)/../$(app_name) -build_dir=$(CURDIR)/build -source_dir=$(build_dir)/$(app_name) - -all: dev-setup build-js-production - -dev-setup: clean clean-dev npm-init - -npm-init: - npm install - -npm-update: - npm update - -build-js: - npm run dev - -build-js-production: - npm run build - -watch-js: - npm run watch - -clean: - rm -f js/$(app_name).js - rm -f js/$(app_name).js.map - rm -rf $(build_dir) - -clean-dev: - rm -rf node_modules - -package: clean build-js-production - mkdir -p $(source_dir) - rsync -a \ - --exclude=/build \ - --exclude=/docs \ - --exclude=/js-src \ - --exclude=/l10n/.tx \ - --exclude=/tests \ - --exclude=/.git \ - --exclude=/.github \ - --exclude=/CONTRIBUTING.md \ - --exclude=/issue_template.md \ - --exclude=/README.md \ - --exclude=/SECURITY.md \ - --exclude=/.gitignore \ - --exclude=/.scrutinizer.yml \ - --exclude=/.drone.yml \ - --exclude=/node_modules \ - --exclude=/npm-debug.log \ - --exclude=/package.json \ - --exclude=/package-lock.json \ - --exclude=/Makefile \ - $(project_dir)/ $(source_dir)