diff options
author | Roy Marples <roy@marples.name> | 2007-11-14 16:39:07 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-11-14 16:39:07 +0000 |
commit | ed20354fdbcf8e34f8346728390decc4cff302b1 (patch) | |
tree | fa93898410cfa169cd6a52d6127eb8797971af60 | |
parent | 4888f3c97d8e239005e3ccc6a4da46ab2f354564 (diff) |
add etc back for BSD installing rc and rc.shutdown
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | default.mk | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -6,7 +6,7 @@ NAME = openrc VERSION = 1.0pre1 PKG = $(NAME)-$(VERSION) -SUBDIRS = conf.d init.d man net sh src +SUBDIRS = etc conf.d init.d man net sh src ifeq ($(OS),) OS=$(shell uname -s) @@ -20,13 +20,13 @@ install:: $(SUBDIRS_INSTALL) # Hmm ... possible to combine these three and not be ugly ? %_all: - $(MAKE) -C $(patsubst %_all,%,$@) all - if test -d $(patsubst %_all,%,$@).$(OS) ; then $(MAKE) -C $(patsubst %_all,%,$@).$(OS) all ; fi + if test -d $(patsubst %_all,%,$@); then $(MAKE) -C $(patsubst %_all,%,$@).$(OS) all; fi + if test -d $(patsubst %_all,%,$@).$(OS); then $(MAKE) -C $(patsubst %_all,%,$@).$(OS) all; fi %_clean: - $(MAKE) -C $(patsubst %_clean,%,$@) clean + if test -d $(patsubst %_clean,%,$@) ; then $(MAKE) -C $(patsubst %_clean,%,$@) clean ; fi if test -d $(patsubst %_clean,%,$@).$(OS) ; then $(MAKE) -C $(patsubst %_clean,%,$@).$(OS) clean ; fi %_install: - $(MAKE) -C $(patsubst %_install,%,$@) install + if test -d $(patsubst %_install,%,$@) ; then $(MAKE) -C $(patsubst %_install,%,$@) install ; fi if test -d $(patsubst %_install,%,$@).$(OS) ; then $(MAKE) -C $(patsubst %_install,%,$@).$(OS) install ; fi |