basic framework

This commit is contained in:
jlamothe
2023-10-31 22:43:33 +00:00
parent 7e6030fd7a
commit 088e58ef11
6 changed files with 36 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
//jl
+1
View File
@@ -0,0 +1 @@
//jl
+12
View File
@@ -0,0 +1,12 @@
#include <u.h>
#include <libc.h>
#include "lib.h"
void
main()
{
exits(0);
}
//jl
+9
View File
@@ -1 +1,10 @@
</$objtype/mkfile
qfmt: main.$O lib.$O
$LD $LDFLAGS -o qfmt main.$O lib.$O
TEST=test
</sys/src/cmd/mktest
#jl
+7
View File
@@ -0,0 +1,7 @@
</$objtype/mkfile
TEST=qfmt
</sys/src/cmd/mktest
#jl
Executable
+6
View File
@@ -0,0 +1,6 @@
#!/bin/rc
cd ..
mk qfmt
#jl