File: Makefile

package info (click to toggle)
2utf 1.04
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 416 kB
  • ctags: 339
  • sloc: ansic: 3,592; makefile: 313; sh: 40
file content (29 lines) | stat: -rw-r--r-- 945 bytes parent folder | download
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
# (c) Ricardas Cepas <rch@pub.osf.lt>. Copying policy: BSD or GNU GPL V2.
FONTS512 = LatArCyrHeb.uni

all:
	PWD="`pwd -P`" && cd ../../linux-lt-current/ \
		&& cp --verb --force --update \
			LatArCyrHeb.uni linux+utf8.ti \
			set_sticky_palette_for_linux-gr+utf8_terminal "$$PWD" \
		&& cp --verb --force --update \
			BSD_style_license "$$PWD"/..
	gzip --best --force LatArCyrHeb.uni 

install:
#	-kbd_share_dir=/usr/share; \
#	   install --owner=root --group=staff --mode=ug=rw,o=r \
#		$(filter %.psf, $(FONTS) $(FONTS2) $(FONTS512)) \
#				 $$kbd_share_dir/consolefonts/
#	install --owner=root --group=staff --mode=ug=rw,o=r \
#		$(filter-out %.psf, $(FONTS) $(FONTS2) $(FONTS512)) \
#				 $$kbd_share_dir/consoletrans/
	
	@echo Installing terminfo entries...
	tic linux+utf8.ti
	install --owner=root --group=root --mode=u=rwx,go=rx \
		set_sticky_palette_for_linux-gr+utf8_terminal* /usr/sbin/

.PHONY: all install
# vi: set noexpandtab: