diff options
Diffstat (limited to 'usr.sbin/init/Makefile')
-rw-r--r-- | usr.sbin/init/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/usr.sbin/init/Makefile b/usr.sbin/init/Makefile new file mode 100644 index 0000000..4b578f8 --- /dev/null +++ b/usr.sbin/init/Makefile @@ -0,0 +1,7 @@ +CC = +LD = + +.PHONY: all +all: + $(CC) -c main.c -o main.o; + $(LD) main.o -o init -e main |