📄 makefile
字号:
#
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -