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

📄 makefile.uni

📁 我根据comp430s改写的DLL源码
💻 UNI
字号:
#
# MAKE	FILE FOR unix systems
# add what optimizion options your system supports
# on some systems there may be no setvbuf() or the code may generate
# errors if the large buffer is used for the stream, if so :
# add -DNO_SETVBUF
# and if your system doesn't support either setvbuf or setbuf
# add -DNO_SETBUF
# add -DALLOC if your system uses alloc() instead of malloc()
# add -DNOSIGNAL for faster processing on a unix pc

CFLAGS=-DUNIX -DNDEBUG
OFLAGS=
LIB=
PROG=compress
OBJ=compress.o compusi.o compapi.o

$(PROG): $(OBJ)
	cc -o $(PROG) $(OFLAGS) $(OBJ) $(LIB)

compapi.o: compress.h
compress.o: compress.h
compusi.o: compress.h

⌨️ 快捷键说明

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