makefile
来自「BCView - Bayes Classifier Visualization 」· 代码 · 共 38 行
TXT
38 行
#-----------------------------------------------------------------------# File : makefile (directory: draw)# Contents: build drawing utility modules# Author : Christian Borgelt# History : 04.11.2000 file created from makefile in table directory#-----------------------------------------------------------------------CC = gccCFBASE = -ansi -Wall -pedantic $(ADDFLAGS)CFLAGS = $(CFBASE) -DNDEBUG -O3# CFLAGS = $(CFBASE) -gX11INC = -I/usr/X11R6/includeX11LIB = -L/usr/X11R6/lib -lXaw -lXt -lXmu -lX11#-----------------------------------------------------------------------# Build Modules#-----------------------------------------------------------------------all: xshades.o proj3d.o#-----------------------------------------------------------------------# Color Shades Management#-----------------------------------------------------------------------xshades.o: xshades.hxshades.o: xshades.c makefile $(CC) $(CFLAGS) $(X11INC) -c xshades.c -o $@#-----------------------------------------------------------------------# 3D to 2D Projection#-----------------------------------------------------------------------proj3d.o: proj3d.hproj3d.o: proj3d.c makefile $(CC) $(CFLAGS) -c proj3d.c -o $@#-----------------------------------------------------------------------# Clean up#-----------------------------------------------------------------------clean: rm -f *.o *~ *.flc core
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?