makefile

来自「Interval Arithmetic Toolbox for Matlab」· 代码 · 共 32 行

TXT
32
字号
#
#  Makefile for the b4m - package by Jens Zemke
#
#  Version: 1.01
#  Date: 4.3.1998
#  Author(s): Jens Zemke
#

CC         = mex
CFLAGS     = -O
LIBS       = Bias

LIBDIR     = /home/ti3/jz/lib  # the directory where you have installed BIAS
                               # BIAS can be downloaded at
                               # http://www.ti3.tu-harburg.de

DLL        = mexrs6            # the suffix of your mexfiles

INCLUDEDIR = /home/ti3/jz/include  # the directory with the include files
                                   # Bias0.h Bias1.h Bias2.h BiasF.h ...

.SUFFIXES:	.$(DLL)

.c.$(DLL):
	$(CC) $(CFLAGS) $< -L$(LIBDIR) -l$(LIBS) -I$(INCLUDEDIR)

b4m:	bias_add.$(DLL) bias_div.$(DLL) bias_mul.$(DLL) bias_pred.$(DLL) \
        bias_sub.$(DLL) bias_succ.$(DLL)

clean:
	rm -f *~ *.$(DLL)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?