/usr/lib/ats-anairiats-0.2.11/contrib/cblas/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 44 45 46 47 | #
# API for cblas in ATS
#
# Author: Hongwei Xi (hwxi AT cs DOT bu DOT edu)
# Author: Shivkumar Chandrasekaran (shiv AT ece DOT ucsb DOT edu)
# Time: July, 2010
#
######
ATSUSRQ="$(ATSHOME)"
ifeq ($(ATSUSRQ),"")
ATSUSRQ="/usr"
endif
######
ATSCC=$(ATSUSRQ)/bin/atscc -Wall
LD=ld
LIBFLAGS=-L/usr/lib/atlas
######
all: atsctrb_cblas.o clean
######
atsctrb_cblas.o: \
cblas_dats.o cblas_extra_dats.o ; $(LD) -r -o $@ $^
######
cblas_dats.o: \
DATS/cblas.dats; $(ATSCC) $(LIBFLAGS) -o $@ -c DATS/cblas.dats
cblas_extra_dats.o: \
DATS/cblas_extra.dats; $(ATSCC) $(LIBFLAGS) -o $@ -c DATS/cblas_extra.dats
######
clean::
rm -f *_?ats.c *_?ats.o
cleanall: clean
rm -f atsctrb_cblas.o
###### end of [Makefile] ######
|