diff options
author | Miles Bader <miles@gnu.org> | 1996-08-12 14:52:48 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-08-12 14:52:48 +0000 |
commit | 8409490cca08c1566ec7b6e597231073a86b0695 (patch) | |
tree | 6dfc36f608d51d929ee61ed6f0a9c210f66b1174 /sutils/Makefile | |
parent | b719aa377034997390f8edd528468fb51dad80d9 (diff) |
(targets): Add e2os.
(SRCS): Add $(SCRIPTS).
(special-targets, SCRIPTS, LCLHDRS): New variables.
Diffstat (limited to 'sutils/Makefile')
-rw-r--r-- | sutils/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sutils/Makefile b/sutils/Makefile index 388bea29..0d3cf985 100644 --- a/sutils/Makefile +++ b/sutils/Makefile @@ -20,11 +20,14 @@ dir := sutils makemode := utilities -targets = reboot halt fsck -SRCS = reboot.c halt.c fsck.c fstab.c clookup.c +targets = reboot halt fsck e2os +special-targets = e2os installationdir = $(sbindir) +SCRIPTS = e2os.sh +SRCS = reboot.c halt.c fsck.c fstab.c clookup.c $(SCRIPTS) +LCLHDRS = fstab.h -OBJS = $(SRCS:.c=.o) +OBJS = $(filter-out $(SCRIPTS),$(SRCS:.c=.o)) include ../Makeconf |