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

📄 makefile.os2

📁 libiconv是一个很不错的字符集转换库。程序接口也很简单
💻 OS2
字号:
# Makefile for libiconv/src, OS2/EMX specific##	requires EMX/GCC development environment and#	GNU fileutils and GNU textutils installed##### Start of system configuration section. ##### Programs used by "make":CC = gccCFLAGS = -O2 -ZmtdINCLUDES = -I. -I../include# Directories used by "make install":prefix = @prefix@exec_prefix = $(prefix)bindir = $(exec_prefix)/bin#### End of system configuration section. ####srcdir = ..SUFFIXES: .obj .oall : iconv.exeiconv.exe : iconv.c	$(CC) $(INCLUDES) -I../lib $(CFLAGS) iconv.c ../lib/iconv.a	copy ..\lib\iconv.dll iconv.dllinstall : all force	cp -i iconv.exe $(bindir)/iconv.exeuninstall : force	rm -f $(bindir)/iconv.execheck : allmostlyclean : cleanclean : force	rm -f *.obj *.dll *.exe coredistclean : clean	rm -f Makefilemaintainer-clean : distcleanforce :

⌨️ 快捷键说明

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