From e9a0335972f8fc5e261010bb38bb0fed698f3da9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Sat, 17 Oct 2015 15:17:28 -0300 Subject: add make fonts (ttf) --- Makefile | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 512e1ea..684f489 100644 --- a/Makefile +++ b/Makefile @@ -14,10 +14,22 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +PREFIX ?= /usr +SHAREDIR ?= $(PREFIX)/share +DESTDIR ?= $(SHAREDIR) + all: fonts fonts: - make -C src/fnt + $(MAKE) -C $(CURDIR)/src/fnt clean: clean-fonts clean-fonts: - make -C src/fnt clean + $(MAKE) -C $(CURDIR)/src/fnt clean + +install: install-fonts +install-fonts: fonts + $(MAKE) -C $(CURDIR)/src/fnt install + +unistall: uninstall-fonts +uninstall-fonts: + $(MAKE) -C $(CURDIR)/src/fnt uninstall -- cgit v1.2.3