diff options
author | Miles Bader <miles@gnu.org> | 1997-07-09 20:11:58 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-07-09 20:11:58 +0000 |
commit | 90e801442c3a161b5d1a3e090f59c723b9e308be (patch) | |
tree | 2574d68cd7cc773af155cfc4ce819bb7a33c6044 /sutils/Makefile | |
parent | 2aa9fb4725594d32748fd2310bcebcbf32c54874 (diff) |
(SRCS):
Add swapon.c & swapoff.c.
(HURDLIBS):
Add libstore.
(targets):
Add swapon & swapoff.
Add dependencies on libstore.
Diffstat (limited to 'sutils/Makefile')
-rw-r--r-- | sutils/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sutils/Makefile b/sutils/Makefile index 24f3bc44..6542166c 100644 --- a/sutils/Makefile +++ b/sutils/Makefile @@ -1,6 +1,6 @@ # Makefile for sutils # -# Copyright (C) 1996 Free Software Foundation +# Copyright (C) 1996, 1997 Free Software Foundation # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -20,20 +20,21 @@ dir := sutils makemode := utilities -targets = reboot halt fsck e2os MAKEDEV +targets = reboot halt fsck e2os MAKEDEV swapon swapoff special-targets = e2os MAKEDEV installationdir = $(sbindir) SCRIPTS = e2os.sh MAKEDEV.sh -SRCS = reboot.c halt.c fsck.c fstab.c clookup.c $(SCRIPTS) +SRCS = reboot.c halt.c fsck.c fstab.c clookup.c swapon.c swapoff.c $(SCRIPTS) LCLHDRS = fstab.h OBJS = $(filter-out $(SCRIPTS),$(SRCS:.c=.o)) -HURDLIBS = shouldbeinlibc +HURDLIBS = store shouldbeinlibc include ../Makeconf fsck: fstab.o clookup.o -reboot halt fsck: ../libshouldbeinlibc/libshouldbeinlibc.a +swapon swapoff: ../libstore/libstore.a +reboot halt fsck swapon swapoff: ../libshouldbeinlibc/libshouldbeinlibc.a $(filter-out $(special-targets), $(targets)): %: %.o |