Sha256: 15a977f90ca1789bd90a2348e10e520f77852c9d3e1342586e906de9066c3908

Contents?: true

Size: 552 Bytes

Versions: 6

Compression:

Stored size: 552 Bytes

Contents

# Makefile for sub directories
#
# mindepth makes sure we do not include this Makeile
MAKEFILES = $(shell find . -mindepth 2 -name 'Makefile')
DIRS = $(patsubst %/Makefile, %, $(MAKEFILES))

# The sets of directories to do various things in
BUILDDIRS = $(DIRS:%=build-%)
CLEANDIRS = $(DIRS:%=clean-%)

all: $(BUILDDIRS)
$(DIRS): $(BUILDDIRS)
$(BUILDDIRS):
	$(MAKE) -C $(@:build-%=%)

clean: $(CLEANDIRS)
$(CLEANDIRS):
	$(MAKE) -C $(@:clean-%=%) clean

.PHONY: subdirs $(DIRS)
.PHONY: subdirs $(BUILDDIRS)
.PHONY: subdirs $(CLEANDIRS)
.PHONY: all clean

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
mdbe-0.1.0 public/amber/examples/Makefile
maglev-database-explorer-0.0.5 public/amber/examples/Makefile
maglev-database-explorer-0.0.4 public/amber/examples/Makefile
maglev-database-explorer-0.0.3 public/amber/examples/Makefile
maglev-database-explorer-0.0.2 public/amber/examples/Makefile
maglev-database-explorer-0.0.1 public/amber/examples/Makefile