project skeleton v_0
authorFrantišek Kučera <franta-hg@frantovo.cz>
Fri, 18 Dec 2020 20:13:05 +0100
branchv_0
changeset 04ee5349be21d
child 1 98274757fcf6
project skeleton
.hgignore
DJMFix.cpp
DJMFix.h
Makefile
djm-fix.cpp
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/.hgignore	Fri Dec 18 20:13:05 2020 +0100
     1.3 @@ -0,0 +1,1 @@
     1.4 +build/
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/DJMFix.cpp	Fri Dec 18 20:13:05 2020 +0100
     2.3 @@ -0,0 +1,16 @@
     2.4 +/**
     2.5 + * DJM-Fix
     2.6 + * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
     2.7 + *
     2.8 + * This program is free software: you can redistribute it and/or modify
     2.9 + * it under the terms of the GNU General Public License as published by
    2.10 + * the Free Software Foundation, version 3 of the License.
    2.11 + *
    2.12 + * This program is distributed in the hope that it will be useful,
    2.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    2.15 + * GNU General Public License for more details.
    2.16 + *
    2.17 + * You should have received a copy of the GNU General Public License
    2.18 + * along with this program. If not, see <http://www.gnu.org/licenses/>.
    2.19 + */
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/DJMFix.h	Fri Dec 18 20:13:05 2020 +0100
     3.3 @@ -0,0 +1,16 @@
     3.4 +/**
     3.5 + * DJM-Fix
     3.6 + * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
     3.7 + *
     3.8 + * This program is free software: you can redistribute it and/or modify
     3.9 + * it under the terms of the GNU General Public License as published by
    3.10 + * the Free Software Foundation, version 3 of the License.
    3.11 + *
    3.12 + * This program is distributed in the hope that it will be useful,
    3.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    3.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    3.15 + * GNU General Public License for more details.
    3.16 + *
    3.17 + * You should have received a copy of the GNU General Public License
    3.18 + * along with this program. If not, see <http://www.gnu.org/licenses/>.
    3.19 + */
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/Makefile	Fri Dec 18 20:13:05 2020 +0100
     4.3 @@ -0,0 +1,25 @@
     4.4 +# DJM-Fix
     4.5 +# Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
     4.6 +#
     4.7 +# This program is free software: you can redistribute it and/or modify
     4.8 +# it under the terms of the GNU General Public License as published by
     4.9 +# the Free Software Foundation, version 3 of the License.
    4.10 +#
    4.11 +# This program is distributed in the hope that it will be useful,
    4.12 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
    4.13 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    4.14 +# GNU General Public License for more details.
    4.15 +#
    4.16 +# You should have received a copy of the GNU General Public License
    4.17 +# along with this program. If not, see <http://www.gnu.org/licenses/>.
    4.18 +
    4.19 +all: build/djm-fix
    4.20 +
    4.21 +clean:
    4.22 +	rm -rf build
    4.23 +
    4.24 +.PHONY: all clean
    4.25 +
    4.26 +build/djm-fix: DJMFix.cpp DJMFix.h djm-fix.cpp
    4.27 +	mkdir -p build
    4.28 +	g++ -o $@ DJMFix.cpp djm-fix.cpp
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/djm-fix.cpp	Fri Dec 18 20:13:05 2020 +0100
     5.3 @@ -0,0 +1,20 @@
     5.4 +/**
     5.5 + * DJM-Fix
     5.6 + * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
     5.7 + *
     5.8 + * This program is free software: you can redistribute it and/or modify
     5.9 + * it under the terms of the GNU General Public License as published by
    5.10 + * the Free Software Foundation, version 3 of the License.
    5.11 + *
    5.12 + * This program is distributed in the hope that it will be useful,
    5.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    5.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    5.15 + * GNU General Public License for more details.
    5.16 + *
    5.17 + * You should have received a copy of the GNU General Public License
    5.18 + * along with this program. If not, see <http://www.gnu.org/licenses/>.
    5.19 + */
    5.20 +
    5.21 +int main(int argc, char**argv) {
    5.22 +	return 0;
    5.23 +}