mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
18 lines
359 B
Text
18 lines
359 B
Text
|
subdirs: $(SUBDIRS)
|
||
|
$(SUBDIRS):
|
||
|
@$(MAKE) -C $@
|
||
|
|
||
|
all: $(subdirs)
|
||
|
|
||
|
SUBDIRS_CLEAN = $(addsuffix .clean,$(SUBDIRS))
|
||
|
clean: $(SUBDIRS_CLEAN)
|
||
|
$(SUBDIRS_CLEAN): %.clean:
|
||
|
@$(MAKE) -C $* clean
|
||
|
|
||
|
SUBDIRS_INSTALL = $(addsuffix .install,$(SUBDIRS))
|
||
|
install: $(SUBDIRS_INSTALL)
|
||
|
$(SUBDIRS_INSTALL): %.install:
|
||
|
@$(MAKE) -C $* install
|
||
|
|
||
|
.PHONY: all clean install $(SUBDIRS)
|