summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-10-20 14:24:38 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2015-10-20 14:24:38 -0300
commit2029e71f71c65e0ec9fda78c4652221a6ed623b9 (patch)
treee4c095902b2896b7732e6c5cd6374ebbedfd93e3 /src
parent2f21d750a828dc89b73677f83469a49087a4e3dd (diff)
src/fnt/Makefile: add comments
Diffstat (limited to 'src')
-rw-r--r--src/fnt/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/fnt/Makefile b/src/fnt/Makefile
index 18123e0..1468655 100644
--- a/src/fnt/Makefile
+++ b/src/fnt/Makefile
@@ -14,20 +14,32 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# fonts list:
fnt = urwGothicDiamond-book \
urwGothicDiamond-bookOblique \
urwGothicDiamond-demi \
urwGothicDiamond-demiOblique
+# fonts group list:
fnt-grp = $(addprefix parabola_,$(fnt))
+
+# SFD source list:
sfd = $(addsuffix _sfd3d0.sfd,$(fnt-grp))
+
+# TTF source list:
ttf-1st = $(addsuffix _sfd3d0.ttf,$(fnt-grp))
ttf-2st = $(addsuffix _sfd3d0.ttf,$(fnt))
ttf-3st = $(addsuffix .ttf,$(fnt))
+
+# SFD source files:
sfd-files = $(addprefix $(CURDIR)/,$(sfd))
+
+# TTF source files:
ttf-1st-files = $(addprefix $(CURDIR)/,$(ttf-1st))
ttf-2st-files = $(addprefix $(CURDIR)/,$(ttf-2st))
ttf-3st-files = $(addprefix $(CURDIR)/,$(ttf-3st))
+
+# TTF target files:
trg-dir = $(DESTDIR)/fonts/TTF
ttf-trg-files = $(addprefix $(trg-dir)/,$(ttf-3st))