summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-04-27 05:54:15 +0000
committerRoland McGrath <roland@gnu.org>1994-04-27 05:54:15 +0000
commitf2c9505314eaae70218b8eb5560c100d8a547ae3 (patch)
tree11dbdedc7f15e0c0c540e34c31624934f589707f /Makefile
parenta4491d96806ac53c70ec7bcc8ff13a0f473c7625 (diff)
Formerly Makefile.~23~
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 11 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index b0054da5..f4450391 100644
--- a/Makefile
+++ b/Makefile
@@ -19,16 +19,16 @@ dir := .
include Makeconf
-LIB_SUBDIRS = libioserver libports libpager libfshelp libdiskfs libtrivfs \
- libcthreads
-PROG_SUBDIRS = auth boot exec fstests hello ifsock init.trim mkbootfs \
- proc term tmpfs ufs pflocal sh.trim ps
-OTHER_SUBDIRS = hurd i386 doc init
-SUBDIRS = $(LIB_SUBDIRS) $(PROG_SUBDIRS) $(OTHER_SUBDIRS)
+lib-subdirs = libioserver libports libpager libfshelp libdiskfs libtrivfs \
+ libthreads
+prog-subdirs = auth boot exec fstests hello ifsock init.trim mkbootfs \
+ proc term tmpfs ufs pflocal sh.trim ps
+other-subdirs = hurd i386 doc init
+subdirs = $(lib-subdirs) $(prog-subdirs) $(other-subdirs)
DIST_FILES = COPYING Makeconf Makefile Maketools README NEWS
-all: $(addsuffix -all,$(PROG_SUBDIRS))
+all: $(addsuffix -all,$(prog-subdirs))
%-all:
$(MAKE) -C $* all
@@ -48,12 +48,12 @@ all: $(addsuffix -all,$(PROG_SUBDIRS))
hurd-snap:
mkdir hurd-snap
-dist: hurd-snap $(addsuffix -lndist,$(SUBDIRS)) lndist
+dist: hurd-snap $(addsuffix -lndist,$(subdirs)) lndist
tar cfz hurd-snap.tar.gz hurd-snap
rm -rf hurd-snap
-clean: $(addsuffix -clean,$(LIB_SUBDIRS)) $(addsuffix -clean,$(PROG_SUBDIRS))
+clean: $(addsuffix -clean,$(lib-subdirs)) $(addsuffix -clean,$(prog-subdirs))
-relink: $(addsuffix -relink,$(PROG_SUBDIRS))
+relink: $(addsuffix -relink,$(prog-subdirs))
-install: $(addsuffix -install,$(PROG_SUBDIRS))
+install: $(addsuffix -install,$(prog-subdirs))