File: Makefile.in

package info (click to toggle)
mlterm 3.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,340 kB
  • sloc: ansic: 154,713; sh: 5,302; cpp: 2,953; objc: 2,776; java: 2,472; makefile: 2,445; perl: 1,674; xml: 44
file content (32 lines) | stat: -rw-r--r-- 841 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
top_builddir = ..
top_srcdir = @top_srcdir@
prefix = @prefix@
sysconfdir = @sysconfdir@

SYSCONFDIR=$(DESTDIR)$(sysconfdir)/mlterm

RCFILES = font vfont tfont font-fb aafont vaafont taafont color termcap key xim main
# GEN_RCFILES =
FONT_win32 = font.win32
FONT_quartz = font.cocoa


INSTALL=@INSTALL@

all .DEFAULT:
	@echo "no such a target"

$(SYSCONFDIR):
	mkdir -p $(SYSCONFDIR)

install: $(SYSCONFDIR)
	for file in $(RCFILES) ; do $(INSTALL) -m 644 $(top_srcdir)/etc/$${file} $(SYSCONFDIR)/$${file} ; done
	# for file in $(GEN_RCFILES) ; do $(INSTALL) -m 644 $(top_builddir)/etc/$${file} $(SYSCONFDIR)/$${file} ; done

	if test "${FONT_@GUI@}" != "" ; then $(INSTALL) -m 644 $(top_srcdir)/etc/${FONT_@GUI@} $(SYSCONFDIR)/font ; fi

uninstall:
	for file in $(RCFILES) ; do rm -f $(SYSCONFDIR)/$${file} ; done

distclean:
	rm -f Makefile