makefile.devel

来自「libiconv是一个很不错的字符集转换库。程序接口也很简单」· DEVEL 代码 · 共 60 行

DEVEL
60
字号
# This is the developer's makefile, not the user's makefile.# Don't use it unless you know exactly what you do!SHELL = /bin/shMAKE = makeAUTOCONF = autoconf-2.57CP = cpRM = rm -fall : configures config.h_vms config.h.msvc include/libcharset.h.msvc-shared include/localcharset.h.msvc-sharedautoconf/aclocal.m4 : $(wildcard m4/*.m4)	aclocal -I m4 --output=$@configures : configure config.h.inconfigure : configure.in autoconf/aclocal.m4	$(AUTOCONF) --include autoconfconfig.h.in : configure.in autoconf/aclocal.m4	autoheader --include autoconf	touch config.h.inconfig.h_vms : config.h.in	sed -e 's/#undef HAVE_DLFCN_H$$/#define HAVE_DLFCN_H 1/' \	    -e 's/#undef HAVE_INTTYPES_H$$/#define HAVE_INTTYPES_H 1/' \	    -e 's/#undef HAVE_LANGINFO_CODESET$$/#define HAVE_LANGINFO_CODESET 1/' \	    -e 's/#undef HAVE_MEMORY_H$$/#define HAVE_MEMORY_H 1/' \	    -e 's/#undef HAVE_SETLOCALE$$/#define HAVE_SETLOCALE 1/' \	    -e 's/#undef HAVE_STDDEF_H$$/#define HAVE_STDDEF_H 1/' \	    -e 's/#undef HAVE_STDLIB_H$$/#define HAVE_STDLIB_H 1/' \	    -e 's/#undef HAVE_STRINGS_H$$/#define HAVE_STRINGS_H 1/' \	    -e 's/#undef HAVE_STRING_H$$/#define HAVE_STRING_H 1/' \	    -e 's/#undef HAVE_SYS_STAT_H$$/#define HAVE_SYS_STAT_H 1/' \	    -e 's/#undef HAVE_SYS_TYPES_H$$/#define HAVE_SYS_TYPES_H 1/' \	    -e 's/#undef HAVE_UNISTD_H$$/#define HAVE_UNISTD_H 1/' \	    -e 's/#undef STDC_HEADERS$$/#define STDC_HEADERS 1/' \	    -e '/#undef INSTALLPREFIX$$/d' \	  < $< > $@config.h.msvc : config.h.in	sed -e 's/#undef HAVE_SETLOCALE$$/#define HAVE_SETLOCALE 1/' \	    -e 's/#undef HAVE_STDDEF_H$$/#define HAVE_STDDEF_H 1/' \	    -e 's/#undef HAVE_STDLIB_H$$/#define HAVE_STDLIB_H 1/' \	    -e 's/#undef HAVE_STRING_H$$/#define HAVE_STRING_H 1/' \	    -e '/#undef INSTALLPREFIX$$/d' \	  < $< > $@include/libcharset.h.msvc-shared : include/libcharset.h.in windows/dllexport.h	sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \	    -e '/#define _LIBCHARSET_H/r windows/dllexport.h' \	  < $< > $@include/localcharset.h.msvc-shared : include/localcharset.h.in windows/dllexport.h	sed -e 's/extern \([^"]\)/extern LIBCHARSET_DLL_EXPORTED \1/' \	    -e '/#define _LOCALCHARSET_H/r windows/dllexport.h' \	  < $< > $@force :

⌨️ 快捷键说明

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