makefile.freebsd
来自「常用字符串hash算法」· FREEBSD 代码 · 共 28 行
FREEBSD
28 行
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 + =
减小字号Ctrl + -
显示快捷键?