Rename run.sh -> build.sh. Add tools directory w/ vendored GYP

This commit is contained in:
Nathan Sobo
2012-08-10 16:08:11 -06:00
parent fcc3c9a2f8
commit db6230fbdc
950 changed files with 56460 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include "lib1.hpp"
int main(int argc, char *argv[]) {
fprintf(stdout, "Hello from program.c\n");
fflush(stdout);
lib1_function();
return 0;
}