summaryrefslogtreecommitdiff
path: root/sutils
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1996-09-17 16:43:48 +0000
committerThomas Bushnell <thomas@gnu.org>1996-09-17 16:43:48 +0000
commitdcf8f5b059e9ae3f767dc4069859dceba756328a (patch)
tree0079e8ac765fb551a9778ede1643145a954992a4 /sutils
parent88f8b13a55f5dac05830f486d0403b11b107c975 (diff)
*** empty log message ***
Diffstat (limited to 'sutils')
-rw-r--r--sutils/ChangeLog9
-rw-r--r--sutils/Makefile6
2 files changed, 14 insertions, 1 deletions
diff --git a/sutils/ChangeLog b/sutils/ChangeLog
index 4c91f33c..45fd0280 100644
--- a/sutils/ChangeLog
+++ b/sutils/ChangeLog
@@ -1,3 +1,12 @@
+Tue Sep 17 12:36:09 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * Makefile ($(prefix)/dev/MAKEDEV): Depend on $(prefix)/dev.
+ ($(prefix)/dev): New target.
+
+Thu Sep 12 16:38:11 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * Makefile (HURDLIBS): New variable.
+
Sun Sep 8 13:57:34 1996 Miles Bader <miles@gnu.ai.mit.edu>
* MAKEDEV.sh: New file.
diff --git a/sutils/Makefile b/sutils/Makefile
index 47209a68..d2164a3d 100644
--- a/sutils/Makefile
+++ b/sutils/Makefile
@@ -28,6 +28,7 @@ SRCS = reboot.c halt.c fsck.c fstab.c clookup.c $(SCRIPTS)
LCLHDRS = fstab.h
DIST_FILES = MAKEDEV.sh
+HURDLIBS=shouldbeinlibc
OBJS = $(filter-out $(SCRIPTS),$(SRCS:.c=.o))
include ../Makeconf
@@ -40,8 +41,11 @@ reboot halt fsck: ../libshouldbeinlibc/libshouldbeinlibc.a
$(filter-out $(special-targets), $(targets)): %: %.o
-$(prefix)/dev/MAKEDEV: MAKEDEV
+$(prefix)/dev/MAKEDEV: MAKEDEV $(prefix)/dev
$(INSTALL_PROGRAM) MAKEDEV $(prefix)/dev/MAKEDEV
%: %.sh $(top_srcdir)/sh-version.sed
sed -f $(top_srcdir)/sh-version.sed < $< > $@
+
+$(prefix)/dev:
+ $(MKINSTALLDIRS) $@