-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (23 loc) · 791 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# COPYRIGHT @ Amin Hassani 2015
PROJECTS = apps/stencil/1d benchmarks apps/minife-2.0/src apps/lulesh
LIBRARIES= ftlib comm-pat
TARGETS = $(LIBRARIES) $(PROJECTS)
# TARGETS = $(filter-out ./, $(dir $(shell find . -name 'Makefile' -print)))
BUILDDIRS = $(TARGETS:%=build-%)
INSTALLDIRS = $(TARGETS:%=install-%)
UNINSTALLDIRS = $(TARGETS:%=uninstall-%)
CLEANDIRS = $(TARGETS:%=clean-%)
all: $(BUILDDIRS)
$(TARGETS): $(BUILDDIRS)
$(BUILDDIRS):
$(MAKE) -C $(@:build-%=%)
install: $(INSTALLDIRS)
$(INSTALLDIRS):
$(MAKE) -C $(@:install-%=%) install
uninstall: $(UNINSTALLDIRS)
$(UNINSTALLDIRS):
$(MAKE) -C $(@:uninstall-%=%) uninstall
clean: $(CLEANDIRS)
$(CLEANDIRS):
$(MAKE) -C $(@:clean-%=%) clean
.PHONY: all clean install $(TARGETS) $(BUILDDIRS) $(INSTALLDIRS) $(CLEANDIRS)