?? makefile.gcc
字號(hào):
#
#
# GCC Makefile for splash and tests
#
#
CC=gcc
CCFLAGS= -g -fno-implicit-templates
.c.o:
$(CC) -c $(CCFLAGS) $*.c
.cc.o:
$(CC) $(CCFLAGS) -c $*.cc
spltest: tsplash.o regex.o
$(CC) $(CCFLAGS) -c -DTEST spltest.cc
$(CC) $(CCFLAGS) -o spltest spltest.o tsplash.o regex.o -lgpp
slicetst: slicetst.cc tsplash.o regex.o
$(CC) -c $(CCFLAGS) -DTEST slicetst.cc
$(CC) $(CCFLAGS) -o slicetst slicetst.o tsplash.o regex.o -lgpp
tsplash.o: splash.cc regexp.h splash.h
$(CC) -c $(CCFLAGS) -DTEST splash.cc
move splash.o tsplash.o
splash.o: regexp.h splash.h
regex.o: regex.c
$(CC) $(CCFLAGS) -c regex.c
test: spltest slicetst
spltest > x1
diff x1 splash.v
slicetst > x2
diff x2 slicetst.v
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -