?? makefile
字號:
# MAKE FILE for GSNAKE API
# Change the following line to reflect where your X11-include directory
X11Include = /usr/openwin/include
CC = g++ -I$(X11Include)
LIBSOURCE = ../lib
SOURCES = image.c matrix.c edge.c pyramid.c snaxel.c contour.c gsnake.c \
ghough.c dymprog.c learn.c class.c random.c xwindow.c
OBJECTS = $(SOURCES:.c=.o)
$(LIBSOURCE)/libgsnake.a : $(OBJECTS)
ar ru $@ $(OBJECTS)
#if you are not running SUN OS version 4.X or below, comment the following
#line
ranlib $@
image.o : image.c gsnake.h
matrix.o : matrix.c gsnake.h
edge.o : edge.c gsnake.h
pyramid.o : pyramid.c gsnake.h
snaxel.o : snaxel.c gsnake.h
contour.o : contour.c gsnake.h
gsnake.o : gsnake.c gsnake.h
ghough.o : ghough.c gsnake.h
dymprog.o : dymprog.c gsnake.h
learn.o : learn.c gsnake.h
class.o : class.c gsnake.h
random.o : random.c random.h gsnake.h
xwindow.o : xwindow.c xwindow.h gsnake.h
clean :
\rm -f $(OBJECTS)
make
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -