summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasudev Kamath <kamathvasudev@gmail.com>2013-11-30 13:58:30 +0530
committerVasudev Kamath <kamathvasudev@gmail.com>2013-11-30 14:31:12 +0530
commitbe9fbfb80249a74f453818ee2832cb32df47d5a3 (patch)
treea24290dd3f9647579746b7b71cc9cf1ee76912b9
parent427380a29918f625c4f1d1e712d157df9176704a (diff)
downloadAnjaliOldLipi.git-be9fbfb80249a74f453818ee2832cb32df47d5a3.tar.gz
AnjaliOldLipi.git-be9fbfb80249a74f453818ee2832cb32df47d5a3.tar.xz
AnjaliOldLipi.git-be9fbfb80249a74f453818ee2832cb32df47d5a3.zip
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 <kamathvasudev@gmail.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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 \