aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 15804458c6447240de9955eca872faf527aa7b84 (plain) (blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright (c) 2013-2016, Loïc Hoguin <[email protected]>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

WITHOUT ?=

BUILD_CONFIG_FILE ?= $(CURDIR)/build.config

ifeq ($(strip $(WITHOUT)),)
BUILD_CONFIG = $(shell sed "s/\#.*//" $(BUILD_CONFIG_FILE))
else
empty := $(subst ,, )
BUILD_CONFIG = $(shell sed "s/\#.*//" $(BUILD_CONFIG_FILE) \
	| grep -v "^$(subst $(empty),\|^,$(WITHOUT))")
endif

ERLANG_MK ?= erlang.mk
ERLANG_MK_VERSION = $(shell git describe --tags --dirty)

.PHONY: all check

all:
	export LC_COLLATE=C; \
	awk 'FNR==1 && NR!=1{print ""}1' $(patsubst %,%.mk,$(BUILD_CONFIG)) \
		| sed 's/^ERLANG_MK_VERSION =.*/ERLANG_MK_VERSION = $(ERLANG_MK_VERSION)/' \
		| sed 's:^ERLANG_MK_WITHOUT =.*:ERLANG_MK_WITHOUT = $(WITHOUT):' > $(ERLANG_MK)

ifdef p
# Remove p from the list of variables since that conflicts with bootstrapping.
MAKEOVERRIDES := $(filter-out p=$p,$(MAKEOVERRIDES))

check:
	$(MAKE) -C test pkg-$p KEEP_BUILDS=1
else
ifdef c
check:
	$(MAKE) -C test $c
else
check:
	$(MAKE) -C test
endif
endif

packages:
	$(MAKE) -C test packages

summary:
	@mkdir -p test/logs/
	@touch test/logs/latest.log test/packages/errors.log
	-@sort test/packages/errors.log | diff test/logs/latest.log -
	@sort test/packages/errors.log > test/logs/latest.log
	@cp test/logs/latest.log "test/logs/$(shell date '+%F_%T%z')"

search:
	@$(MAKE) --no-print-directory \
		-f core/core.mk $(addprefix -f,$(wildcard index/*.mk)) -f core/index.mk \
		search

clean:
	$(MAKE) -C test clean
	rm -rf doc/guide.pdf doc/html
	git checkout erlang.mk

docs:
	$(MAKE) -f core/core.mk -f core/docs.mk -f plugins/asciidoc.mk asciidoc DEPS=asciideck

up:
	git clone [email protected]:ninenines/erlang.mk.git gh-pages
	cd gh-pages && git checkout gh-pages
	cd gh-pages && make
	cd gh-pages && git push origin gh-pages
	rm -rf gh-pages