`sys_hello` is a new syscall that just prints some text in the terminal. `testbin/hellotest` is a userland binary that just calls `sys_hello`
12 lines
154 B
Makefile
12 lines
154 B
Makefile
# Makefile for hello
|
|
|
|
TOP=../../..
|
|
.include "$(TOP)/mk/os161.config.mk"
|
|
|
|
PROG=hellotest
|
|
SRCS=hello.c
|
|
BINDIR=/testbin
|
|
|
|
.include "$(TOP)/mk/os161.prog.mk"
|
|
|