/usr/lib/ats-anairiats-0.2.5/contrib/GL/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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | #
# Author: Hongwei Xi (hwxi AT cs DOT bu DOT edu)
# Time: December, 2009
#
######
ATSUSRQ="$(ATSHOME)"
ifeq ($(ATSUSRQ),"")
ATSUSRQ="/usr"
endif
ATSCC=$(ATSUSRQ)/bin/atscc
######
all: atsctrb_GL.o clean
######
atsctrb_GL.o: \
gl_sats.o glu_sats.o \
glut_sats.o glut_dats.o
ld -r -o $@ \
gl_sats.o glu_sats.o glut_sats.o glut_dats.o
######
gl_sats.o: SATS/gl.sats
$(ATSCC) -o $@ -c SATS/gl.sats
glu_sats.o: SATS/glu.sats
$(ATSCC) -o $@ -c SATS/glu.sats
glut_sats.o: SATS/glut.sats
$(ATSCC) -o $@ -c SATS/glut.sats
glut_dats.o: DATS/glut.dats
$(ATSCC) -o $@ -c DATS/glut.dats
######
clean::
rm -f gl_sats.c gl_sats.o
rm -f glu_sats.c glu_sats.o
rm -f glut_sats.c glut_sats.o
rm -f glut_dats.c glut_dats.o
cleanall: clean
rm -f atsctrb_GL.o
###### end of [Makefile] ######
|