-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
26 lines (20 loc) · 986 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
#===============================================================================
# Macros
#===============================================================================
DOCKER_RUN = docker run --rm
#===============================================================================
# Configuration
#===============================================================================
MAKEFLAGS += --no-builtin-rules
MAKEFLAGS += --no-print-directory
MAKEFLAGS += --warn-undefined-variables
#===============================================================================
# Targets
#===============================================================================
.PHONY: build
build: filters.xml
#===============================================================================
# Rules
#===============================================================================
filters.xml: filters.rb
$(DOCKER_RUN) --volume $(CURDIR):/app:ro --workdir /app $(shell docker build --quiet .) $< > $@