Working state
This commit is contained in:
30
Makefile
30
Makefile
@@ -3,7 +3,7 @@ pkgdirname != basename `git config remote.origin.url` | sed 's/.git$$//'
|
||||
|
||||
install: clean
|
||||
mkdir -p ${pkgdir}/opt/aninix/${pkgdirname}/
|
||||
rsync -avz --exclude=Makefile --exclude=LICENSE --exclude=.git* --exclude=README . * ${pkgdir}/opt/aninix/${pkgdirname}/
|
||||
rsync -avzp HelloWorld* ${pkgdir}/opt/aninix/${pkgdirname}/
|
||||
|
||||
test: compile
|
||||
python3 -m pytest
|
||||
@@ -20,26 +20,26 @@ reverse:
|
||||
checkperm:
|
||||
@echo Nothing to do.
|
||||
|
||||
c: helloworld.c /usr/bin/gcc
|
||||
gcc -o helloworld helloworld.c
|
||||
c: HelloWorld.c /usr/bin/gcc
|
||||
gcc -o HelloWorld HelloWorld.c
|
||||
|
||||
java: helloworld.java /usr/bin/java /usr/bin/javac
|
||||
javac helloworld.java
|
||||
java: HelloWorld.java /usr/bin/java /usr/bin/javac
|
||||
javac HelloWorld.java
|
||||
|
||||
bash: helloworld.bash /usr/bin/bash
|
||||
#bash helloworld.bash
|
||||
bash: HelloWorld.bash /usr/bin/bash
|
||||
#bash HelloWorld.bash
|
||||
|
||||
php: helloworld.php /usr/bin/php
|
||||
#php helloworld.php
|
||||
php: HelloWorld.php /usr/bin/php
|
||||
#php HelloWorld.php
|
||||
|
||||
#hack: helloworld.php /usr/bin/hhvm
|
||||
#hhvm --php helloworld.php
|
||||
#hack: HelloWorld.php /usr/bin/hhvm
|
||||
#hhvm --php HelloWorld.php
|
||||
|
||||
perl: helloworld.pl /usr/bin/perl
|
||||
#perl ./helloworld.pl
|
||||
perl: HelloWorld.pl /usr/bin/perl
|
||||
#perl ./HelloWorld.pl
|
||||
|
||||
python: helloworld.py /usr/bin/python3
|
||||
#python3 ./helloworld.py
|
||||
python: HelloWorld.py /usr/bin/python3
|
||||
#python3 ./HelloWorld.py
|
||||
|
||||
cs: HelloWorld.cs /usr/bin/mono /usr/bin/mcs
|
||||
mcs HelloWorld.cs
|
||||
|
Reference in New Issue
Block a user