/usr/lib/ats-anairiats-0.2.11/contrib/pango/Makefile is in ats-lang-anairiats 0.2.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 42 43 | #
# API for pango in ATS
#
# Author: Hongwei Xi (hwxi AT cs DOT bu DOT edu)
# Time: May, 2010
#
######
ATSUSRQ="$(ATSHOME)"
ifeq ($(ATSUSRQ),"")
ATSUSRQ="/usr"
endif
######
ATSCC=$(ATSUSRQ)/bin/atscc
PANGOCFLAGS=`pkg-config pango --cflags`
######
all:: atsctrb_pango.o
all:: clean
######
atsctrb_pango.o: pango_dats.o
ld -r -o $@ pango_dats.o
######
pango_dats.o: DATS/pango.dats
$(ATSCC) $(PANGOCFLAGS) -o $@ -c DATS/pango.dats
######
clean::
rm -f *_?ats.c *_?ats.o
cleanall: clean
rm -f atsctrb_pango.o
###### end of [Makefile] ######
|