mirror of
https://github.com/chocolate-doom/statcheck.git
synced 2024-11-21 20:21:27 +00:00
Add copyright headers
This commit is contained in:
parent
cf13c8ac19
commit
fcdff9cc69
4 changed files with 40 additions and 0 deletions
10
GNUmakefile
10
GNUmakefile
|
@ -1,3 +1,13 @@
|
|||
#
|
||||
# Copyright (C) 2024 Simon Howard
|
||||
#
|
||||
# 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 2 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.
|
||||
#
|
||||
|
||||
export SOURCE_PORT = $(shell which chocolate-doom)
|
||||
export SDL_VIDEODRIVER = dummy
|
||||
|
|
10
common.py
10
common.py
|
@ -1,3 +1,13 @@
|
|||
#
|
||||
# Copyright (C) 2024 Simon Howard
|
||||
#
|
||||
# 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 2 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.
|
||||
#
|
||||
|
||||
from os.path import dirname, join, exists
|
||||
import yaml
|
||||
|
|
10
makedepends
10
makedepends
|
@ -1,4 +1,14 @@
|
|||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (C) 2024 Simon Howard
|
||||
#
|
||||
# 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 2 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.
|
||||
#
|
||||
|
||||
from glob import glob
|
||||
import os
|
||||
|
|
10
testrunner
10
testrunner
|
@ -1,4 +1,14 @@
|
|||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright (C) 2024 Simon Howard
|
||||
#
|
||||
# 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 2 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.
|
||||
#
|
||||
|
||||
import os
|
||||
from os.path import join
|
||||
|
|
Loading…
Reference in a new issue