📄 makefile.am
字号:
perl_dirs = commoncommon_sources = \ common/GtkAccount.xs \ common/GtkBlist.xs \ common/GtkConn.xs \ common/GtkConv.xs \ common/GtkConvWin.xs \ common/GtkDebug.xs \ common/GtkDialogs.xs \ common/GtkFt.xs \ common/GtkIMHtml.xs \ common/GtkIMHtmlToolbar.xs \ common/GtkLog.xs \ common/GtkMenuTray.xs \ common/GtkPlugin.xs \ common/GtkPluginPref.xs \ common/GtkPounce.xs \ common/GtkPrefs.xs \ common/GtkPrivacy.xs \ common/GtkRoomlist.xs \ common/GtkSavedStatuses.xs \ common/GtkSession.xs \ common/GtkSound.xs \ common/GtkStatusBox.xs \ common/GtkThemes.xs \ common/GtkUtils.xs \ common/Makefile.PL.in \ common/Pidgin.pm \ common/Pidgin.xs \ common/gtkmodule.h \ common/typemapEXTRA_DIST = \ Makefile.mingw \ common/Makefile.mingw \ $(common_sources)common/Makefile: common/Makefile.PL @if test "x${top_srcdir}" != "x${top_builddir}"; then \ for f in ${common_sources}; do \ ${LN_S} -f ../${srcdir}/$$f $$f; \ done; \ fi @cd common && $(perlpath) Makefile.PL $(PERL_MM_PARAMS)common/Makefile.PL: common/Makefile.PL.in $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)all-local: common/Makefile @for dir in $(perl_dirs); do \ cd $$dir && \ if [ ! -f Makefile ]; then \ $(perlpath) Makefile.PL $(PERL_MM_PARAMS); \ fi && \ ($(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) $(CFLAGS)" $(PERL_EXTRA_OPTS) || \ $(MAKE) CC="$(CC)" CCFLAGS="$(PERL_CFLAGS) $(CFLAGS)" $(PERL_EXTRA_OPTS)) && \ cd ..; \ doneinstall-exec-local: @for dir in $(perl_dirs); do \ cd $$dir; \ $(MAKE) install; \ cd ..; \ done# Evil Hack (TM)# ... which doesn't work with DESTDIR installs. FIXME?uninstall-local: @for dir in $(perl_dirs); do \ cd $$dir && \ `$(MAKE) uninstall | grep unlink | sed -e 's#/usr#${prefix}#' -e 's#unlink#rm -f#'` && \ cd ..; \ doneclean-generic: @for dir in $(perl_dirs); do \ cd $$dir; \ $(MAKE) clean; \ cd ..; \ done rm -f *.sodistclean-generic: @for dir in $(perl_dirs); do \ cd $$dir; \ $(MAKE) realclean; \ rm -f Makefile.PL; \ rm -f Makefile.old; \ rm -f Makefile; \ cd ..; \ done @rm -f MakefileAM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/libpurple \ -I$(top_builddir)/libpurple \ -I$(top_srcdir)/pidgin \ $(DEBUG_CFLAGS) \ $(GTK_CFLAGS) \ $(PLUGIN_CFLAGS) \ $(PERL_CFLAGS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -