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

📄 makefile-libbz2_so

📁 bzip2是一个免费的
💻
字号:
# This Makefile builds a shared version of the library, # libbz2.so.1.0.2, with soname libbz2.so.1.0,# at least on x86-Linux (RedHat 7.2), # with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98).  # Please see the README file for some # important info about building the library like this.SHELL=/bin/shCC=gccBIGFILES=-D_FILE_OFFSET_BITS=64CFLAGS=-fpic -fPIC -Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)OBJS= blocksort.o  \      huffman.o    \      crctable.o   \      randtable.o  \      compress.o   \      decompress.o \      bzlib.oall: $(OBJS)	$(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.2 $(OBJS)	$(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.2	rm -f libbz2.so.1.0	ln -s libbz2.so.1.0.2 libbz2.so.1.0clean: 	rm -f $(OBJS) bzip2.o libbz2.so.1.0.2 libbz2.so.1.0 bzip2-sharedblocksort.o: blocksort.c	$(CC) $(CFLAGS) -c blocksort.chuffman.o: huffman.c	$(CC) $(CFLAGS) -c huffman.ccrctable.o: crctable.c	$(CC) $(CFLAGS) -c crctable.crandtable.o: randtable.c	$(CC) $(CFLAGS) -c randtable.ccompress.o: compress.c	$(CC) $(CFLAGS) -c compress.cdecompress.o: decompress.c	$(CC) $(CFLAGS) -c decompress.cbzlib.o: bzlib.c	$(CC) $(CFLAGS) -c bzlib.c

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -