Arrange licensing info in repo according to REUSE 3.2 convention.
Chris Pressey
9 months ago
|
0 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
1 |
# For more information, please refer to <https://unlicense.org/>
|
|
2 |
# SPDX-License-Identifier: Unlicense
|
|
3 |
|
0 | 4 |
*.msil
|
1 | 5 |
*.cil
|
2 | 6 |
*.exe
|
0 | |
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
1 | |
|
2 | |
Files:
|
3 | |
.gitignore
|
4 | |
bin/PLexceptGOTOdotNET
|
5 | |
build.sh
|
6 | |
clean.sh
|
7 | |
test.sh
|
8 | |
eg/*
|
9 | |
Copyright: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
10 | |
License: Unlicense
|
|
0 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
1 |
# For more information, please refer to <https://unlicense.org/>
|
|
2 |
# SPDX-License-Identifier: Unlicense
|
|
3 |
|
|
4 |
version = 1
|
|
5 |
|
|
6 |
[[annotations]]
|
|
7 |
path = ["eg/**"]
|
|
8 |
precedence = "aggregate"
|
|
9 |
SPDX-FileCopyrightText = "Chris Pressey, the original author of this work, has dedicated it to the public domain."
|
|
10 |
SPDX-License-Identifier = "Unlicense"
|
0 | 0 |
#!/bin/sh
|
|
1 |
|
|
2 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
3 |
# For more information, please refer to <https://unlicense.org/>
|
|
4 |
# SPDX-License-Identifier: Unlicense
|
1 | 5 |
|
2 | 6 |
THIS=`realpath $0`
|
3 | 7 |
DIR=`dirname $THIS`
|
0 | 0 |
#!/bin/sh
|
|
1 |
|
|
2 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
3 |
# For more information, please refer to <https://unlicense.org/>
|
|
4 |
# SPDX-License-Identifier: Unlicense
|
1 | 5 |
|
2 | 6 |
ILASM=ilasm
|
3 | 7 |
THIS=`realpath $0`
|
0 | 0 |
#!/bin/sh
|
|
1 |
|
|
2 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
3 |
# For more information, please refer to <https://unlicense.org/>
|
|
4 |
# SPDX-License-Identifier: Unlicense
|
1 | 5 |
|
2 | 6 |
PROG=PLexceptGOTOdotNET
|
3 | 7 |
|
0 | 0 |
#!/bin/sh
|
|
1 |
|
|
2 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
3 |
# For more information, please refer to <https://unlicense.org/>
|
|
4 |
# SPDX-License-Identifier: Unlicense
|
1 | 5 |
|
2 | 6 |
find . -name "*.o" -exec rm {} \;
|
3 | 7 |
find . -name "*.hi" -exec rm {} \;
|
0 | 0 |
#!/bin/sh
|
|
1 |
|
|
2 |
# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
|
|
3 |
# For more information, please refer to <https://unlicense.org/>
|
|
4 |
# SPDX-License-Identifier: Unlicense
|
1 | 5 |
|
2 | 6 |
APPLIANCES="tests/appliances/PLexceptGOTOdotNET.md"
|
3 | 7 |
ILASM=ilasm
|