📄 makefile.gnu
字号:
# This makefile was written to compile a distribution of pyfann for# GNU platforms (cygwin included.)## This is NOT needed for Linux/Unix, use setup_unix.py instead.TARGETS = _libfann.dllPYTHON=python2.3LIBS=-L. -L/usr/local/lib -L/usr/bin -l$(PYTHON) ../src/fann*.oall: $(TARGETS)_%.dll: %_wrap.o fann_helper.o gcc $(LIBS) -shared -dll $^ -o $@%.o: %.c gcc -c $< -I/usr/include/$(PYTHON)/%_wrap.c: %.i swig -python $<clean: rm -f $(TARGETS) *_wrap.* fann_helper.o fann.pyc *.so
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -