Added GNU GPL v3+ license header and copyright notice to all scripts and Makefiles
Note: ease.js is licensed under the LGPL. Many of its external scripts are under the GPL.perfodd
parent
d5f1d514d9
commit
6c7ccdcb3b
20
Makefile
20
Makefile
|
@ -1,3 +1,23 @@
|
||||||
|
##
|
||||||
|
# ease.js Makefile
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012 Mike Gerwitz
|
||||||
|
#
|
||||||
|
# This file is part of ease.js.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
##
|
||||||
|
|
||||||
path_build=./build
|
path_build=./build
|
||||||
path_tools=./tools
|
path_tools=./tools
|
||||||
|
|
23
doc/Makefile
23
doc/Makefile
|
@ -1,4 +1,25 @@
|
||||||
# documentation
|
##
|
||||||
|
# ease.js manual Makefile
|
||||||
|
#
|
||||||
|
# Responsible for building the project documentation.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012 Mike Gerwitz
|
||||||
|
#
|
||||||
|
# This file is part of ease.js.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
##
|
||||||
|
|
||||||
path_doc=.
|
path_doc=.
|
||||||
path_build=../build
|
path_build=../build
|
||||||
|
|
|
@ -1,3 +1,25 @@
|
||||||
|
##
|
||||||
|
# ease.js test Makefile
|
||||||
|
#
|
||||||
|
# Responsible for running the ease.js test suite.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012 Mike Gerwitz
|
||||||
|
#
|
||||||
|
# This file is part of ease.js.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
##
|
||||||
|
|
||||||
tests := $(shell find . \
|
tests := $(shell find . \
|
||||||
-name 'test-*' \
|
-name 'test-*' \
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
#
|
||||||
# Copyright (C) 2010,2011 Mike Gerwitz
|
# Copyright (C) 2012 Mike Gerwitz
|
||||||
#
|
#
|
||||||
# This file is part of ease.js.
|
# This file is part of ease.js.
|
||||||
#
|
#
|
||||||
# ease.js is free software: you can redistribute it and/or modify it under the
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# terms of the GNU Lesser General Public License as published by the Free
|
# it under the terms of the GNU General Public License as published by
|
||||||
# Software Foundation, either version 3 of the License, or (at your option)
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
# any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
# This program is distributed in the hope that it will be useful,
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# #
|
# #
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2012 Mike Gerwitz
|
# Copyright (C) 2012 Mike Gerwitz
|
||||||
#
|
#
|
||||||
|
# This file is part of ease.js.
|
||||||
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
|
|
@ -4,6 +4,23 @@
|
||||||
# have restricted scope. This means that they cannot be used as types in other
|
# have restricted scope. This means that they cannot be used as types in other
|
||||||
# modules. Therefore, to permit this, we must generate an extern file containing
|
# modules. Therefore, to permit this, we must generate an extern file containing
|
||||||
# basic definitions of each.
|
# basic definitions of each.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012 Mike Gerwitz
|
||||||
|
#
|
||||||
|
# This file is part of ease.js.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# 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, see <http://www.gnu.org/licenses/>.
|
||||||
# #
|
# #
|
||||||
|
|
||||||
# all CamelCase modules are likely to be ctors
|
# all CamelCase modules are likely to be ctors
|
||||||
|
|
|
@ -9,21 +9,21 @@
|
||||||
# to keep it as simple (and fast) as possible. The below implementation is
|
# to keep it as simple (and fast) as possible. The below implementation is
|
||||||
# suitable for our needs.
|
# suitable for our needs.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2010,2011 Mike Gerwitz
|
# Copyright (C) 2012 Mike Gerwitz
|
||||||
#
|
#
|
||||||
# This file is part of ease.js.
|
# This file is part of ease.js.
|
||||||
#
|
#
|
||||||
# ease.js is free software: you can redistribute it and/or modify it under the
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# terms of the GNU Lesser General Public License as published by the Free
|
# it under the terms of the GNU General Public License as published by
|
||||||
# Software Foundation, either version 3 of the License, or (at your option)
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
# any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful, but WITHOUT
|
# This program is distributed in the hope that it will be useful,
|
||||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# #
|
# #
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,8 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2012 Mike Gerwitz
|
# Copyright (C) 2012 Mike Gerwitz
|
||||||
#
|
#
|
||||||
|
# This file is part of ease.js.
|
||||||
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
|
17
tools/verset
17
tools/verset
|
@ -1,6 +1,23 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Simple version update script
|
# Simple version update script
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012 Mike Gerwitz
|
||||||
|
#
|
||||||
|
# This file is part of ease.js.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# 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, see <http://www.gnu.org/licenses/>.
|
||||||
##
|
##
|
||||||
|
|
||||||
major="$1"
|
major="$1"
|
||||||
|
|
Loading…
Reference in New Issue