From be9fbfb80249a74f453818ee2832cb32df47d5a3 Mon Sep 17 00:00:00 2001 From: Vasudev Kamath Date: Sat, 30 Nov 2013 13:58:30 +0530 Subject: Depend install target on compile target. Previously */*.ttf was declared as the dependency which doesn't exist and make install will fail. Signed-off-by: Vasudev Kamath --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c5b9de4..16ce14c 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ compile: ./generate.pe $${font}/$${font}.sfd; \ done; -install: */*.ttf +install: compile # copy ttf files to system font directory for font in `echo ${fonts}`;do \ install -D -m 0644 $${font}/$${font}.ttf \ -- cgit