/usr/lib/ats-anairiats-0.2.5/contrib/GLES2/Makefile is in ats-lang-anairiats 0.2.5-0ubuntu1.
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 | #
# Author: Artyom Shakhakov (artyom DOT shalkhakov AT gmail DOT com)
# Time: May, 2011
#
######
ATSUSRQ="$(ATSHOME)"
ifeq ($(ATSUSRQ),"")
ATSUSRQ="/usr"
endif
ATSCC=$(ATSUSRQ)/bin/atscc
######
all: atsctrb_GLES2.o clean
######
atsctrb_GLES2.o: gl2_sats.o
ld -r -o $@ gl2_sats.o
######
gl2_sats.o: SATS/gl2.sats
$(ATSCC) -o $@ -c SATS/gl2.sats
######
clean::
rm -f gl2_sats.c gl2_sats.o
cleanall: clean
rm -f atsctrb_GLES2.o
###### end of [Makefile] ######
|