#  No Copyright
#
#  The person who associated a work with this deed has dedicated the work to the
#  public domain by waiving all of his or her rights to the work worldwide under
#  copyright law, including all related and neighboring rights, to the extent
#  allowed by law.
#
#  You can copy, modify, distribute and perform the work, even for commercial
#  purposes, all without asking permission.
#
#  See https://creativecommons.org/share-your-work/public-domain/cc0/ for more
#  information on the license.


#  This file is part of the virtual tour around my student house, made by
#  Maarten Tromp <maarten@geekabit.nl>.
#
#  More info on the project:
#  https://www.geekabit.nl/projects/virtual-tour-of-my-student-house/


# programs
PARSER	:= ./render.py

# sources
TEMPLATE	:= template.html
SOURCES	:= $(wildcard */*.conf)
TARGETS	:= $(SOURCES:.conf=.html)

# targets
.PHONY:	all clean

all:	$(TARGETS)

$(TARGETS): %.html : %.conf $(TEMPLATE) $(PARSER)
	$(PARSER) -o $@

clean:
	-@ $(RM) $(TARGETS)

# end of file
