makefile.am
来自「Linux下的多协议即时通讯程序源代码」· AM 代码 · 共 148 行
AM
148 行
DIST_SUBDIRS = mono perl ssl tclif USE_PERLPERL_DIR = perlendifif USE_TCLTCL_DIR = tclendifif ENABLE_DBUSDBUS_LTLIB = dbus-example.laendifif USE_MONOMONO_DIR = monoendifSUBDIRS = \ $(MONO_DIR) \ $(PERL_DIR) \ ssl \ $(TCL_DIR)plugindir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)autoaccept_la_LDFLAGS = -module -avoid-versionbuddynote_la_LDFLAGS = -module -avoid-versionciphertest_la_LDFLAGS = -module -avoid-versioncodeinline_la_LDFLAGS = -module -avoid-versionidle_la_LDFLAGS = -module -avoid-versionjoinpart_la_LDFLAGS = -module -avoid-versionlog_reader_la_LDFLAGS = -module -avoid-versionnewline_la_LDFLAGS = -module -avoid-versionofflinemsg_la_LDFLAGS = -module -avoid-versionpluginpref_example_la_LDFLAGS = -module -avoid-versionpsychic_la_LDFLAGS = -module -avoid-versionsignals_test_la_LDFLAGS = -module -avoid-versionsimple_la_LDFLAGS = -module -avoid-versionstatenotify_la_LDFLAGS = -module -avoid-version# this can't be in a conditional otherwise automake 1.4 yellsdbus_example_la_LDFLAGS = -module -avoid-versionif PLUGINSplugin_LTLIBRARIES = \ autoaccept.la \ buddynote.la \ idle.la \ joinpart.la \ log_reader.la \ newline.la \ offlinemsg.la \ psychic.la \ statenotify.la \ $(DBUS_LTLIB)noinst_LTLIBRARIES = \ ciphertest.la \ codeinline.la \ pluginpref_example.la \ signals_test.la \ simple.laautoaccept_la_SOURCES = autoaccept.cbuddynote_la_SOURCES = buddynote.cciphertest_la_SOURCES = ciphertest.ccodeinline_la_SOURCES = codeinline.cidle_la_SOURCES = idle.cjoinpart_la_SOURCES = joinpart.clog_reader_la_SOURCES = log_reader.cnewline_la_SOURCES = newline.cofflinemsg_la_SOURCES = offlinemsg.cpluginpref_example_la_SOURCES = pluginpref_example.cpsychic_la_SOURCES = psychic.csignals_test_la_SOURCES = signals-test.csimple_la_SOURCES = simple.cstatenotify_la_SOURCES = statenotify.cautoaccept_la_LIBADD = $(GLIB_LIBS)buddynote_la_LIBADD = $(GLIB_LIBS)ciphertest_la_LIBADD = $(GLIB_LIBS)codeinline_la_LIBADD = $(GLIB_LIBS)idle_la_LIBADD = $(GLIB_LIBS)joinpart_la_LIBADD = $(GLIB_LIBS)log_reader_la_LIBADD = $(GLIB_LIBS)newline_la_LIBADD = $(GLIB_LIBS)offlinemsg_la_LIBADD = $(GLIB_LIBS)pluginpref_example_la_LIBADD = $(GLIB_LIBS)psychic_la_LIBADD = $(GLIB_LIBS)signals_test_la_LIBADD = $(GLIB_LIBS)simple_la_LIBADD = $(GLIB_LIBS)statenotify_la_LIBADD = $(GLIB_LIBS)if ENABLE_DBUSCLEANFILES = dbus-example-bindings.cdbus_example_la_SOURCES = dbus-example.cdbus_example_la_LIBADD = $(GLIB_LIBS) $(DBUS_LIBS).PHONY: always$(top_builddir)/libpurple/dbus-types.h: always cd $(@D) && $(MAKE) $(AM_MAKEFLAGS) $(@F)dbus-example-bindings.c: $(top_srcdir)/libpurple/dbus-analyze-functions.py $(dbus_example_la_SOURCES) cat $(srcdir)/$(dbus_example_la_SOURCES) | \ $(PYTHON) $(top_srcdir)/libpurple/dbus-analyze-functions.py --export-only > $@$(dbus_example_la_OBJECTS) dbus-example.so: dbus-example-bindings.c $(top_builddir)/libpurple/dbus-types.hendif # ENABLE_DBUSendif # PLUGINSEXTRA_DIST = \ Makefile.mingw \ dbus-buddyicons-example.py \ filectl.c \ fortuneprofile.pl \ ipc-test-client.c \ ipc-test-server.c \ startup.pyAM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -I$(top_srcdir)/libpurple \ -I$(top_builddir)/libpurple \ $(DEBUG_CFLAGS) \ $(GLIB_CFLAGS) \ $(PLUGIN_CFLAGS) \ $(DBUS_CFLAGS)## This part allows people to build their own plugins in here.# Yes, it's a mess.#SUFFIXES = .c .so.c.so: $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I$(top_srcdir) $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) @rm -f tmp$@.lo tmp$@.o libtmp$@.la @cp .libs/libtmp$@.so* $@ @rm -f .libs/libtmp$@.*
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?