refactoring: moved sources to src/bin.

This commit is contained in:
Daniel Juyung Seo 2013-06-25 09:21:26 +09:00
parent 4754159c7d
commit 2b3e5073f4
17 changed files with 20 additions and 16 deletions

View File

@ -52,6 +52,7 @@ AC_DEFINE_UNQUOTED(EINA_LOG_LEVEL_MAXIMUM, ${with_max_log_level}, [if set, loggi
AC_CONFIG_FILES([
Makefile
src/Makefile
src/bin/Makefile
data/Makefile
data/images/Makefile
data/themes/Makefile

View File

@ -1,18 +1,3 @@
MAINTAINERCLEANFILES = Makefile.in
SUBDIRS = bin
bin_PROGRAMS = elm_theme_viewer
elm_theme_viewer_CPPFLAGS = -I. \
-DPACKAGE_BIN_DIR=\"$(bindir)\" -DPACKAGE_LIB_DIR=\"$(libdir)\" \
-DPACKAGE_DATA_DIR=\"$(pkgdatadir)\" @ELM_THEME_VIEWER_CFLAGS@
elm_theme_viewer_LDADD = @ELM_THEME_VIEWER_LIBS@
elm_theme_viewer_SOURCES = \
gui.c gui.h \
log.c log.h \
theme.c theme.h \
widget.c widget.h \
main.c common.h \
gui_mobile.c gui_mobile.h \
util.c util.h

18
src/bin/Makefile.am Normal file
View File

@ -0,0 +1,18 @@
MAINTAINERCLEANFILES = Makefile.in
bin_PROGRAMS = elm_theme_viewer
elm_theme_viewer_CPPFLAGS = -I. \
-DPACKAGE_BIN_DIR=\"$(bindir)\" -DPACKAGE_LIB_DIR=\"$(libdir)\" \
-DPACKAGE_DATA_DIR=\"$(pkgdatadir)\" @ELM_THEME_VIEWER_CFLAGS@
elm_theme_viewer_LDADD = @ELM_THEME_VIEWER_LIBS@
elm_theme_viewer_SOURCES = \
gui.c gui.h \
log.c log.h \
theme.c theme.h \
widget.c widget.h \
main.c common.h \
gui_mobile.c gui_mobile.h \
util.c util.h