summaryrefslogtreecommitdiff
path: root/Makefile
blob: 780a279c91d7a759323253e5c7055da216da3e74 (plain)
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
pcl6:
	make -C main -f pcl6_gcc.mak	# build PCL and PCLXL. 

debug: 
	make -C main -f pcl6_gcc.mak debug

fonts:
	mkdir -p /windows/fonts/	# make a font directory. 2 
	cp urwfonts/*.ttf /windows/fonts/	# copy the fonts. 
	touch fonts

install:
	install main/obj/pcl6 /usr/local/bin

test: 
	cd tools; ../main/obj/pcl6 -dTextAlphaBits=4 owl.pcl tiger.px3 # test with PCL and PXL test file 

# NB - this does not remove the fonts.  blowing away /windows/fonts
# might be unexpected on some systems and we don't enumerate the font
# names here so they could be removed individually.

clean:
	make -C main -f pcl6_gcc.mak clean
	rm -rf fonts main/obj /usr/local/bin/pcl6

PHONY: clean test install pcl6