You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.5 KiB
68 lines
1.5 KiB
AUTOMAKE_OPTIONS = subdir-objects |
|
MAINTAINERCLEANFILES = *.gcda *.gcno *.o config.h.in config.h Makefile.in Makefile stamp-h1 |
|
DISTCLEANFILES = *.gcda *.gcno |
|
|
|
bin_PROGRAMS = ephoto |
|
|
|
ephoto_CPPFLAGS = \ |
|
-I$(top_srcdir) \ |
|
-I$(top_srcdir)/src/bin \ |
|
-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ |
|
-Wall \ |
|
-Wextra \ |
|
-Wshadow \ |
|
@EFL_CFLAGS@ |
|
ephoto_LDADD = @EFL_LIBS@ |
|
if HAVE_PO |
|
ephoto_CPPFLAGS += -DLOCALEDIR=\"$(localedir)\" |
|
ephoto_LDADD += @LTLIBINTL@ |
|
endif |
|
|
|
ephoto_SOURCES = \ |
|
ephoto.c \ |
|
ephoto_bcg.c \ |
|
ephoto_color.c \ |
|
ephoto_config.c \ |
|
ephoto_cropper.c \ |
|
ephoto_directory_browser.c \ |
|
ephoto_editor.c \ |
|
ephoto_file.c \ |
|
ephoto_filters.c \ |
|
ephoto_hsv.c \ |
|
ephoto_ipc.c \ |
|
ephoto_main.c \ |
|
ephoto_red_eye.c \ |
|
ephoto_thumb.c \ |
|
ephoto_thumb_browser.c \ |
|
ephoto_single_browser.c \ |
|
ephoto_slideshow.c |
|
|
|
internal_bindir = $(datadir)/$(PACKAGE) |
|
internal_bin_PROGRAMS = ephoto_thumbnail |
|
|
|
ephoto_thumbnail_CPPFLAGS = \ |
|
-I$(top_srcdir) \ |
|
-I$(top_srcdir)/src/bin \ |
|
-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \ |
|
-Wall \ |
|
-Wextra \ |
|
-Wshadow \ |
|
@EFL_CFLAGS@ |
|
|
|
ephoto_thumbnail_LDADD = @EFL_LIBS@ |
|
|
|
if HAVE_WIN32 |
|
ephoto_thumbnail_LDADD += -lws2_32 |
|
endif |
|
|
|
if HAVE_PO |
|
ephoto_thumbnail_LDADD += @LTLIBINTL@ |
|
endif |
|
|
|
ephoto_thumbnail_SOURCES = \ |
|
ephoto_thumbnailer.c \ |
|
ephoto_ipc.c \ |
|
ephoto_thumb.c |
|
|
|
noinst_HEADERS = ephoto.h |
|
EXTRA_DIST = ephoto.h
|
|
|