Licensing and Makefile standards
This commit is contained in:
parent
48ac2be371
commit
bf1e804584
27
LICENSE
Normal file
27
LICENSE
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# http://www.wtfpl.net/about/
|
||||||
|
|
||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
Version 2, December 2004
|
||||||
|
|
||||||
|
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim or modified
|
||||||
|
copies of this license document, and changing it is allowed as long
|
||||||
|
as the name is changed.
|
||||||
|
|
||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. You just DO WHAT THE FUCK YOU WANT TO.
|
||||||
|
|
||||||
|
ANINIX ADDENDUM
|
||||||
|
|
||||||
|
Trademark Pending 2017 (https://aninix.net/irc/)
|
||||||
|
|
||||||
|
The "AniNIX" name and |> logo is trademark-pending as of 2017. All
|
||||||
|
AniNIX materials can be reproduced and re-used, though you must
|
||||||
|
contact the admins of the network to get written permission to use
|
||||||
|
the AniNIX name.
|
||||||
|
|
||||||
|
Attribution is appreciated for other materials but not legally
|
||||||
|
required or necessary.
|
22
Makefile
22
Makefile
@ -1,6 +1,19 @@
|
|||||||
|
INSTALLER != curl -s https://aninix.net/foundation/installer-test.bash | /bin/bash
|
||||||
|
|
||||||
all: c csharp java bash php hack perl
|
all: c csharp java bash php hack perl
|
||||||
echo Done;
|
echo Done;
|
||||||
|
|
||||||
|
compile:
|
||||||
|
[ -f helloworld.c ]
|
||||||
|
|
||||||
|
install: compile
|
||||||
|
@echo This project cannot be installed.
|
||||||
|
|
||||||
|
test: all
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@echo Nothing to do.
|
||||||
|
|
||||||
c: helloworld.c /usr/bin/gcc
|
c: helloworld.c /usr/bin/gcc
|
||||||
gcc -o helloworld helloworld.c
|
gcc -o helloworld helloworld.c
|
||||||
./helloworld
|
./helloworld
|
||||||
@ -27,3 +40,12 @@ csharp: helloworld.csharp /usr/bin/mono /usr/bin/mcs
|
|||||||
mcs helloworld.csharp
|
mcs helloworld.csharp
|
||||||
mono helloworld.exe
|
mono helloworld.exe
|
||||||
rm helloworld.exe
|
rm helloworld.exe
|
||||||
|
|
||||||
|
diff:
|
||||||
|
@echo Nothing to do.
|
||||||
|
|
||||||
|
reverse:
|
||||||
|
@echo Nothing to do.
|
||||||
|
|
||||||
|
checkperm:
|
||||||
|
@echo Nothing to do.
|
||||||
|
Loading…
Reference in New Issue
Block a user