]> git.donarmstrong.com Git - lilypond.git/blob - mf/Makefile
patch::: 0.0.75.jcn6: pats
[lilypond.git] / mf / Makefile
1 #
2 # project  LilyPond -- the musical typesetter
3 # title    makefile for yet to add in MF files
4 # file     ../Makefile 
5 #
6 # Copyright (c) 1997 by
7 #       Jan Nieuwenhuizen <jan@digicash.com>
8 #       Han-Wen Nienhuys <hanwen@stack.nl>
9 #
10
11 # subdir level:
12 #
13 depth = ..
14 #
15
16 # generic variables:
17 #
18 include ./$(depth)/make/Variables.make 
19
20 include ./$(depth)/.version
21
22 # descent order into subdirectories:
23 #
24 SUBDIRS =
25 #
26
27 #
28 include ./$(depth)/make/Files.make
29 MFFILES:=$(wildcard *.mf)
30
31 EXTRA_DISTFILES = $(MFFILES) README
32
33
34 # list of custom libraries:
35 #
36 CUSTOMLIBES = \
37
38 LOADLIBES +=
39 #
40
41 # main target of this module:
42 #
43 MAINTARGET = 
44
45 default: $(MAINTARGET)
46 #
47
48 # generic targets and rules:
49 #
50 include ./$(depth)/make/Targets.make
51 include ./$(depth)/make/Rules.make
52 #
53
54 lily-mfdir = $(MFDIR)/lilypond
55
56 localinstall:
57         $(INSTALL) -d $(lily-mfdir)
58         $(INSTALL) -m 644 $(MFFILES) $(lily-mfdir)
59
60 localuninstall:
61         for i in $(MFFILES); do rm -f $(lily-mfdir)/$$i; done
62         -rmdir $(lily-mfdir)