comparison client/Makefile @ 1792:2c71012fee5e

correct Makefile attribution header
author Fadi Abbud <fadi.abbud@intevation.de>
date Mon, 14 Jan 2019 12:29:19 +0100
parents dd9d90cae683
children aabde3279947
comparison
equal deleted inserted replaced
1791:0f98ef2531a5 1792:2c71012fee5e
1 # This is Free Software under GNU Affero General Public License v >= 3.0 1 # This is free software under MIT license taken from:
2 # without warranty, see README.md and license for details. 2 # https://github.com/Polyconseil/vue-gettext/blob/master/Makefile
3 # 3 #
4 # SPDX-License-Identifier: AGPL-3.0-or-later 4 # following changes were made due to requirments:
5 # License-Filename: LICENSES/AGPL-3.0.txt 5 # * Add additional locales for the app
6 # 6 # * Add ability to run the translations Makefile with several users on a multi-user system
7 # Copyright (C) 2018 by via donau 7 # * prevent clean from being called accidently if ´make´ is executed without parameters
8 # – Österreichische Wasserstraßen-Gesellschaft mbH
9 # Software engineering by Intevation GmbH
10 #
11 # Author(s):
12 # * Thomas Junk <thomas.junk@intevation.de>
13 8
14 # On OSX the PATH variable isn't exported unless "SHELL" is also set, see: http://stackoverflow.com/a/25506676 9 # On OSX the PATH variable isn't exported unless "SHELL" is also set, see: http://stackoverflow.com/a/25506676
15 SHELL = /bin/bash 10 SHELL = /bin/bash
16 NODE_BINDIR = ./node_modules/.bin 11 NODE_BINDIR = ./node_modules/.bin
17 export PATH := $(NODE_BINDIR):$(PATH) 12 export PATH := $(NODE_BINDIR):$(PATH)