add etc back for BSD installing rc and rc.shutdown
This commit is contained in:
parent
4888f3c97d
commit
ed20354fdb
2
Makefile
2
Makefile
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user