1 # Adapted from Pidgin's plugins/Makefile.am, thanks
7 plugindir = $(libdir)/geany
9 plugins_includedir = $(includedir)/geany
10 plugins_include_HEADERS = \
14 # systems without python should continue to build OK
15 geanyfunctions.h: genapi.py ../src/plugins.c
16 python genapi.py || true
21 demoplugin_la_LDFLAGS = -module -avoid-version
22 classbuilder_la_LDFLAGS = -module -avoid-version
23 htmlchars_la_LDFLAGS = -module -avoid-version
24 export_la_LDFLAGS = -module -avoid-version
25 saveactions_la_LDFLAGS = -module -avoid-version
26 filebrowser_la_LDFLAGS = -module -avoid-version
27 splitwindow_la_LDFLAGS = -module -avoid-version
32 # build Geany for Windows on non-Windows systems (cross-compile)
33 # (this is a little hack'ish and surely can be improved)
34 DLL_LD_FLAGS = -module -avoid-version
36 -DGEANY_DATADIR=\"data\" \
41 -I$(top_srcdir)/tagmanager/include \
42 -I$(top_srcdir)/scintilla/include \
54 # Split Window is broken on Windows
58 $(CC) $(MINGW_CFLAGS) -o $@.o -c $<
59 $(CC) -shared $@.o $(GTK_LIBS) $(DLL_LD_FLAGS) -o $@
66 # Plugins to be installed
67 plugin_LTLIBRARIES = \
75 # Plugins not to be installed
76 noinst_LTLIBRARIES = \
79 demoplugin_la_SOURCES = demoplugin.c
80 classbuilder_la_SOURCES = classbuilder.c
81 htmlchars_la_SOURCES = htmlchars.c
82 export_la_SOURCES = export.c
83 saveactions_la_SOURCES = saveactions.c
84 filebrowser_la_SOURCES = filebrowser.c
85 splitwindow_la_SOURCES = splitwindow.c
87 demoplugin_la_CFLAGS = -DG_LOG_DOMAIN=\""Demoplugin"\"
88 classbuilder_la_CFLAGS = -DG_LOG_DOMAIN=\""Classbuilder"\"
89 htmlchars_la_CFLAGS = -DG_LOG_DOMAIN=\""HTMLChars"\"
90 export_la_CFLAGS = -DG_LOG_DOMAIN=\""Export"\"
91 saveactions_la_CFLAGS = -DG_LOG_DOMAIN=\""SaveActions"\"
92 filebrowser_la_CFLAGS = -DG_LOG_DOMAIN=\""FileBrowser"\"
93 splitwindow_la_CFLAGS = -DG_LOG_DOMAIN=\""SplitWindow"\"
95 demoplugin_la_LIBADD = $(GTK_LIBS)
96 classbuilder_la_LIBADD = $(GTK_LIBS)
97 htmlchars_la_LIBADD = $(GTK_LIBS)
98 export_la_LIBADD = $(GTK_LIBS)
99 saveactions_la_LIBADD = $(GTK_LIBS)
100 filebrowser_la_LIBADD = $(GTK_LIBS)
101 splitwindow_la_LIBADD = $(GTK_LIBS)
107 -DDATADIR=\"$(datadir)\" \
109 -I$(top_srcdir)/src \
110 -I$(top_srcdir)/tagmanager/include \
111 -I$(top_srcdir)/scintilla/include \
116 # This part allows people to build their own plugins in here.
121 $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I$(top_srcdir) $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS)
122 $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS)
123 @rm -f tmp$@.lo tmp$@.o libtmp$@.la
124 @cp .libs/libtmp$@.so* $@
125 @rm -f .libs/libtmp$@.*