File: Makefile.bsd.in

package info (click to toggle)
cti-ifhp 2.2.8-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 904 kB
  • ctags: 673
  • sloc: ansic: 4,916; sh: 1,539; makefile: 287; perl: 99
file content (41 lines) | stat: -rw-r--r-- 806 bytes parent folder | download | duplicates (2)
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
33
34
35
36
37
38
39
40
41
#**************************************************************************
#* LPRng IFHP Filter
#* Copyright 1994-1997 Patrick Powell, San Diego, CA <papowell@sdsu.edu>
#*
#* Based on the CTI printer filters.
#*  See COPYRIGHT for details.
#*
#* Makefile.in,v 3.2 1998/03/29 23:23:10 papowell Exp
#

FONTDIR=@prefix@/lib/filters/fonts
SRC=@srcdir@
@SET_MAKE@

all clean:

.PHONY: all clean install distclean

FONTS=${SRC}/elot-928 ${SRC}/dec-greek ${SRC}/cp-437

install:
	mkdir -p ${FONTDIR}; \
	for i in ${FONTS} ; do \
		cp -r $$i ${FONTDIR} ; \
	done

distclean:
	rm -f Makefile Makefile.bsd

CI=
CO=-kv
ci:
	if test ! -d RCS ; then mkdir RCS; fi;
	checkin() { \
		rcs -l $$1 ; \
		ci $(CI) -mUpdate -t-Initial $$1; \
		co $(CO) $$1; \
	}; \
	for i in *.proto Makefile* ; do \
		checkin $$i; \
	done;