⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.freebsd

📁 常用字符串hash算法
💻 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 + -