Compare commits

..

No commits in common. "82e63531e6f0595ce9ab7dba07f43cda294c6f3a" and "092ea2b3a3d524d37de17a81c15461b234650011" have entirely different histories.

5 changed files with 5 additions and 34 deletions

10
mkfile
View File

@ -1,15 +1,13 @@
</$objtype/mkfile
HEADERS=lib.h
CLEANFILES=qfmt
qfmt: main.$O lib.$O
$LD $LDFLAGS -o qfmt main.$O lib.$O
test: qfmt
$O.qfmt: test.$O lib.$O
$LD $LDFLAGS -o $O.qfmt test.$O lib.$O
TEST=test
TEST=qfmt
</sys/src/cmd/mktest
#jl
#jl

View File

@ -1,12 +1,10 @@
#include <u.h>
#include <libc.h>
#include "init.h"
void
main()
{
test_init();
print("Tests not implemented yet.\n");
exits(0);
}

View File

@ -1,11 +0,0 @@
#include <u.h>
#include <libc.h>
void
test_init(void)
{
print("testing: init()\n");
print("tests not yet defined\n");
}
//jl

View File

@ -1,3 +0,0 @@
extern void test_init(void);
//jl

View File

@ -1,11 +0,0 @@
</$objtype/mkfile
HEADERS=init.h ../init.h
$O.test: test.$O init.$O ../lib.$O
TEST=test
</sys/src/cmd/mktest
#jl