Converting from Bazaar
Old log: ------------------------------------------------------------ revno: 1 committer: cxford <cxford@aninix.net> branch nick: HelloWorld timestamp: Thu 2015-12-10 16:51:21 -0600 message: Initializing for repos
This commit is contained in:
29
Makefile
Normal file
29
Makefile
Normal file
@@ -0,0 +1,29 @@
|
||||
all: c csharp java bash php hack perl
|
||||
echo Done;
|
||||
|
||||
c: helloworld.c /usr/bin/gcc
|
||||
gcc -o helloworld helloworld.c
|
||||
./helloworld
|
||||
rm ./helloworld
|
||||
|
||||
java: helloworld.java /usr/bin/java /usr/bin/javac
|
||||
javac helloworld.java
|
||||
java helloworld
|
||||
rm helloworld.class
|
||||
|
||||
bash: helloworld.bash /usr/bin/bash
|
||||
bash helloworld.bash
|
||||
|
||||
php: helloworld.php /usr/bin/php
|
||||
php helloworld.php
|
||||
|
||||
hack: helloworld.php /usr/bin/hhvm
|
||||
hhvm --php helloworld.php
|
||||
|
||||
perl: helloworld.pl /usr/bin/perl
|
||||
perl ./helloworld.pl
|
||||
|
||||
csharp: helloworld.csharp /usr/bin/mono /usr/bin/mcs
|
||||
mcs helloworld.csharp
|
||||
mono helloworld.exe
|
||||
rm helloworld.exe
|
Reference in New Issue
Block a user