Initial Spring 2016 commit.

This commit is contained in:
Geoffrey Challen
2015-12-23 00:50:04 +00:00
commit cafa9f5690
732 changed files with 92195 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Makefile for sfsck
TOP=../../..
.include "$(TOP)/mk/os161.config.mk"
PROG=sfsck
SRCS=\
main.c pass1.c pass2.c \
inode.c freemap.c sb.c \
sfs.c utils.c \
../mksfs/disk.c ../mksfs/support.c
CFLAGS+=-I../mksfs
HOST_CFLAGS+=-I../mksfs
BINDIR=/sbin
HOSTBINDIR=/hostbin
.include "$(TOP)/mk/os161.prog.mk"
.include "$(TOP)/mk/os161.hostprog.mk"