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

📄 makefile.os2

📁 libiconv是一个很不错的字符集转换库。程序接口也很简单
💻 OS2
字号:
# Makefile for libiconv/lib, OS2/EMX specific##	requires EMX/GCC development environment and#	GNU fileutils and GNU textutils installed##	define EMXPATH=<your EMX path> on install/uninstall##### Start of system configuration section. ##### Directories used by "make install":prefix = @prefix@exec_prefix = $(prefix)libdir = $(exec_prefix)/libshlibdir = $(exec_prefix)/dll# Programs used by "make":CC = gccCFLAGS = -O2 -Zomf -Zcrtdll -ZmtINCLUDES = -I. -I../include#### End of system configuration section. ####.SUFFIXES: .obj .oSOURCES = iconv.cOBJECTS = iconv.objall : iconv.dll iconv.a iconv.libconfig.h : force	sed -e 's/#undef WORDS_LITTLEENDIAN$$/#define WORDS_LITTLEENDIAN 1/' < config.h.in > config.hiconv.obj : iconv.c encodings.def encodings_local.def aliases.h config.h	$(CC) $(INCLUDES) $(CFLAGS) -c iconv.ciconv.dll : $(OBJECTS) ../os2/iconv.def # DLL itself	$(CC) -Zdll $(CFLAGS) -o $@ $(OBJECTS) ../os2/iconv.deficonv.lib : ../os2/iconv.def            # Import Lib. for -Zomf	rm -f iconv.lib	emximp -o iconv.lib ../os2/iconv.deficonv.a : ../os2/iconv.def              # Import Lib. for EMX .o format	rm -f iconv.a	emximp -o iconv.a ../os2/iconv.def# Installs the library and include files only. Typically called with only# $(libdir), $(shlibdir) and $(includedir) - don't use $(prefix) and# $(exec_prefix) here.install-lib : all force	cp -i iconv.dll $(shlibdir)/iconv.dll	cp -i iconv.lib $(libdir)/iconv.lib	cp -i iconv.a   $(libdir)/iconv.ainstall : all force	cp -i iconv.dll $(shlibdir)/iconv.dll	cp -i iconv.lib $(libdir)/iconv.lib	cp -i iconv.a   $(libdir)/iconv.auninstall : force	rm -f $(shlibdir)/iconv.dll	rm -f $(libdir)/iconv.lib	rm -f $(libdir)/iconv.acheck : allclean : force	rm -f *.obj *.lib *.a *.dll coredistclean : clean	rm -f config.hmaintainer-clean : distcleanforce :

⌨️ 快捷键说明

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