mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-24 18:22:24 -05:00
9 lines
117 B
Makefile
9 lines
117 B
Makefile
OUTDIR?=../build/
|
|
|
|
xeps=$(wildcard *.xml)
|
|
|
|
.PHONY: all
|
|
all: html
|
|
|
|
html: $(patsubst %.xml, $(OUTDIR)/%.html, $(xeps))
|