mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
#
|
|
# Makefile.HAIKU
|
|
#
|
|
#
|
|
# If you compile, change the name to Makefile.in.
|
|
#
|
|
#
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Shell
|
|
#-----------------------------------------------------------------------------
|
|
|
|
SHELL = /bin/sh
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Platform
|
|
#-----------------------------------------------------------------------------
|
|
|
|
PLAT = HAIKU
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Libraries and includs
|
|
#-----------------------------------------------------------------------------
|
|
|
|
BLLIB = -lopenblas
|
|
CBLIB = ../lib/cblas.a
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Compilers
|
|
#-----------------------------------------------------------------------------
|
|
|
|
CC = gcc
|
|
FC = gfortran
|
|
LOADER = $(FC)
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Flags for Compilers
|
|
#-----------------------------------------------------------------------------
|
|
|
|
CFLAGS = -O3 -DADD_
|
|
FFLAGS = -O3
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Archive programs and flags
|
|
#-----------------------------------------------------------------------------
|
|
|
|
ARCH = ar
|
|
ARCHFLAGS = r
|
|
RANLIB = echo
|