?? makefile.freebsd
字號:
CXXFLAGS = `wx-config --cxxflags` -DNDEBUG -Isrc/ \ -I. -I/usr/local/include -fexceptions# Makefile expects the cryptopp dir with libcrypto.a# to be one level below the Hashish dir in 'crypto'# Makefile also expects an install of wxWindows from# the 2.3.2 source# add -static if you are building a static binLBLIBS = `wx-config --libs` \ -L/usr/local/lib -lcryptoppall: hashishmain.o: src/main.cpp g++ -c src/main.cpp $(CXXFLAGS)hashish_wdr.o: src/hashish_wdr.cpp src/hashish_wdr.h g++ -c src/hashish_wdr.cpp $(CXXFLAGS)hashish: main.o hashish_wdr.o g++ -o hashish $(CXXFLAGS) main.o hashish_wdr.o $(LBLIBS)clean: rm -f *.o hashish
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -