2005-11-22 12:26:26 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
2005-11-27 20:54:28 +00:00
|
|
|
# $Id$
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
|
|
|
|
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
|
|
|
|
-I../scintilla/include \
|
|
|
|
-I../tagmanager/include \
|
|
|
|
@PACKAGE_CFLAGS@
|
|
|
|
|
2006-02-14 21:56:09 +00:00
|
|
|
EXTRA_DIST = images.c gb.c win32.c win32.h
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
bin_PROGRAMS = geany
|
|
|
|
|
|
|
|
geany_SOURCES = \
|
|
|
|
main.c geany.h \
|
2006-06-16 11:17:52 +00:00
|
|
|
notebook.c notebook.h \
|
2006-05-19 17:18:06 +00:00
|
|
|
keybindings.c keybindings.h \
|
2005-11-22 12:26:26 +00:00
|
|
|
templates.c templates.h \
|
|
|
|
treeviews.c treeviews.h \
|
|
|
|
about.c about.h \
|
|
|
|
encodings.c encodings.h \
|
|
|
|
keyfile.c keyfile.h \
|
|
|
|
prefs.c prefs.h \
|
|
|
|
dialogs.c dialogs.h \
|
|
|
|
msgwindow.c msgwindow.h \
|
|
|
|
build.c build.h \
|
|
|
|
filetypes.c filetypes.h \
|
|
|
|
highlighting.c highlighting.h \
|
|
|
|
sci_cb.c sci_cb.h \
|
|
|
|
sciwrappers.c sciwrappers.h \
|
|
|
|
document.c document.h \
|
|
|
|
utils.c utils.h \
|
2005-11-27 20:54:28 +00:00
|
|
|
vte.c vte.h \
|
2005-11-22 12:26:26 +00:00
|
|
|
support.c support.h \
|
|
|
|
interface.c interface.h \
|
|
|
|
callbacks.c callbacks.h
|
|
|
|
|
2006-01-23 17:13:05 +00:00
|
|
|
#AM_CFLAGS = -Wall -pipe
|
2006-05-19 17:18:06 +00:00
|
|
|
#AM_CFLAGS = -DGEANY_DEBUG -Wall -pipe
|
|
|
|
AM_CFLAGS = -DGEANY_DEBUG -g -Wall -pipe
|
2005-11-22 12:26:26 +00:00
|
|
|
geany_LDADD = @PACKAGE_LIBS@ -lstdc++ ../scintilla/libscintilla.a ../tagmanager/libtagmanager.a $(INTLLIBS)
|