📄 makefile.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 + -