summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--bsdfsck/Makefile4
-rw-r--r--ufs-fsck/Makefile4
3 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 2088e2ff..40bdb75b 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,7 @@ include Makeconf
lib-subdirs = libioserver libports libpager libfshelp libdiskfs libtrivfs \
libthreads
prog-subdirs = auth boot exec fstests init.trim mkbootfs \
- proc term ufs pflocal pipes dev.trim utils trans fsck
+ proc term ufs pflocal pipes dev.trim utils trans fsck bsdfsck
other-subdirs = hurd doc init tmpfs dev ext2fs
subdirs = $(lib-subdirs) $(prog-subdirs) $(other-subdirs)
subdirs-nodist = ext2fs libnetserv
diff --git a/bsdfsck/Makefile b/bsdfsck/Makefile
index bc718b66..28adbbd1 100644
--- a/bsdfsck/Makefile
+++ b/bsdfsck/Makefile
@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-dir := fsck
+dir := bsdfsck
makemode := utility
SRCS = dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
@@ -23,7 +23,7 @@ SRCS = dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
OBJS = dir.o inode.o main.o pass1.o pass1b.o pass2.o pass3.o pass4.o \
pass5.o setup.o utilities.o tables.o # preen.o
LCLHDRS = fsck.h
-target = fsck
+target = bsdfsck
include ../Makeconf
diff --git a/ufs-fsck/Makefile b/ufs-fsck/Makefile
index 75b2207a..ef8919a9 100644
--- a/ufs-fsck/Makefile
+++ b/ufs-fsck/Makefile
@@ -18,14 +18,14 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-dir := newfsck
+dir := fsck
makemode := utility
SRCS = dir.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \
pass5.c setup.c utilities.c inode.c
OBJS = $(subst .c,.o,$(SRCS)) tables.o
LCLHDRS = fsck.h
-target = newfsck
+target = fsck
include ../Makeconf