first commit

This commit is contained in:
2020-10-09 18:29:19 +09:00
commit 58e7f456f0
5 changed files with 201 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
all: bsd-ce nk-dump
bsd-ce: bsd-ce.c
$(CC) -o bsd-ce bsd-ce.c
nk-dump: nk-dump.c
$(CC) -o nk-dump nk-dump.c
clean:
rm -f bsd-ce nk-dump