blob: 276c1a4762171780f82b312d43129f9388334a4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#TEMPLATES = Default.tmpl Simple.tmpl
templdir = $(top_srcdir)/bibletime/display-templates
TEMPLATES = $(templdir)/*.tmpl
EXTRA_DIST = template-init.cpp create_code.pl names.conf $(TEMPLATES)
all:
perl $(templdir)/create_code.pl $(TEMPLATES)
template-init.cpp:
perl $(templdir)/create_code.pl $(TEMPLATES)
CLEANFILES = template-init.cpp
|