-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
36 lines (32 loc) · 933 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
ACLOCAL_AMFLAGS = -I m4
geany_plugindir = $(libdir)/geany
geany_plugin_LTLIBRARIES = tweaks-ui.la
tweaks_ui_la_CXXFLAGS = $(GEANY_CFLAGS) \
-DG_LOG_DOMAIN=\""Tweaks-UI"\"
tweaks_ui_la_LIBADD = $(GEANY_LIBS)
tweaks_ui_la_LDFLAGS = -module -avoid-version
tweaks_ui_la_SOURCES = \
src/tkui_main.cc \
src/tkui_main.h \
src/tkui_settings.cc \
src/tkui_settings.h \
src/tkui_auto_read_only.cc \
src/tkui_auto_read_only.h \
src/tkui_colortip.cc \
src/tkui_colortip.h \
src/tkui_column_markers.cc \
src/tkui_column_markers.h \
src/tkui_detect_filetype.cc \
src/tkui_detect_filetype.h \
src/tkui_hide_menubar.cc \
src/tkui_hide_menubar.h \
src/tkui_markword.cc \
src/tkui_markword.h \
src/tkui_sidebar_auto_position.cc \
src/tkui_sidebar_auto_position.h \
src/tkui_unchange_document.cc \
src/tkui_unchange_document.h \
src/tkui_window_geometry.cc \
src/tkui_window_geometry.h \
src/auxiliary.cc \
src/auxiliary.h