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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
## Process this file with automake to produce Makefile.in
INCLUDES = \
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
@PACKAGE_CFLAGS@
if DEB
bin_PROGRAMS = teaed
teaed_SOURCES = \
main.c \
interface.c interface.h \
callbacks.c callbacks.h \
tea_text_document.c tea_text_document.h \
rox_strings.c rox_strings.h \
tea_funx.c tea_funx.h \
tea_defs.c tea_defs.h \
tea_config.c tea_config.h \
undo.c undo.h \
tea_spell.c tea_spell.h \
tea_fr.c tea_fr.h \
tea_about.c tea_about.h \
tea_kwas.c tea_kwas.h \
tea_options.c tea_options.h \
tea_gtk_utils.c tea_gtk_utils.h \
tea_enc.c tea_enc.h \
tea_proj.c tea_proj.h \
tea_tree_view.c tea_tree_view.h \
tea_calendar.c tea_calendar.h \
free_desktop_support.c free_desktop_support.h \
image_browser.c image_browser.h \
latex_support.c latex_support.h \
md5-util.c md5-util.h \
tea_encode.c tea_encode.h \
tea_findfiles_mult.c tea_findfiles_mult.h \
expr.c expr.h
teaed_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
else
bin_PROGRAMS = tea
tea_SOURCES = \
main.c \
interface.c interface.h \
callbacks.c callbacks.h \
tea_text_document.c tea_text_document.h \
rox_strings.c rox_strings.h \
tea_funx.c tea_funx.h \
tea_defs.c tea_defs.h \
tea_config.c tea_config.h \
undo.c undo.h \
tea_spell.c tea_spell.h \
tea_fr.c tea_fr.h \
tea_about.c tea_about.h \
tea_kwas.c tea_kwas.h \
tea_options.c tea_options.h \
tea_gtk_utils.c tea_gtk_utils.h \
tea_enc.c tea_enc.h \
tea_proj.c tea_proj.h \
tea_tree_view.c tea_tree_view.h \
tea_calendar.c tea_calendar.h \
free_desktop_support.c free_desktop_support.h \
image_browser.c image_browser.h \
latex_support.c latex_support.h \
md5-util.c md5-util.h \
tea_encode.c tea_encode.h \
tea_findfiles_mult.c tea_findfiles_mult.h \
expr.c expr.h
tea_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
endif
|