-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
45 lines (27 loc) · 1.36 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
SHELL := /usr/bin/env bash
.DEFAULT_TARGET = test
####################################################################################################
root.dir := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
root.repository := bdockerimg
root.image-variants := ubuntu-2204 opensuse-tumbleweed
root.image-variants.default := ubuntu-2204
####################################################################################################
.PHONY : bmakelib/bmakelib.mk
include bmakelib/bmakelib.mk
####################################################################################################
subprojects := quicklisp bmakelib sdkman
subprojects.makefiles := $(subprojects:%=$(root.dir)%/Makefile)
.PHONY : $(subprojects.makefiles)
include $(subprojects.makefiles)
####################################################################################################
.PHONY : fusion/Makefile
include fusion/Makefile
####################################################################################################
.PHONY : test
test : $(subprojects:%=%.test)
####################################################################################################
.PHONY : build
build : $(subprojects:%=%.build)
####################################################################################################
.PHONY : publish
publish : $(subprojects:%=%.publish)