diff --git a/src/bin/Makefile.am b/src/bin/Makefile.am index b0134821..40254450 100644 --- a/src/bin/Makefile.am +++ b/src/bin/Makefile.am @@ -1,6 +1,6 @@ MAINTAINERCLEANFILES = Makefile.in -bin_PROGRAMS = terminology tcat +bin_PROGRAMS = terminology tycat terminology_CPPFLAGS = -I. \ -DPACKAGE_BIN_DIR=\"$(bindir)\" -DPACKAGE_LIB_DIR=\"$(libdir)\" \ @@ -39,10 +39,10 @@ utf8.c utf8.h \ win.c win.h \ utils.c utils.h -tcat_SOURCES = tcat.c +tycat_SOURCES = tycat.c -tcat_CPPFLAGS = -I. \ +tycat_CPPFLAGS = -I. \ -DPACKAGE_BIN_DIR=\"$(bindir)\" -DPACKAGE_LIB_DIR=\"$(libdir)\" \ -DPACKAGE_DATA_DIR=\"$(pkgdatadir)\" @TERMINOLOGY_CFLAGS@ -tcat_LDADD = @TERMINOLOGY_LIBS@ +tycat_LDADD = @TERMINOLOGY_LIBS@ diff --git a/src/bin/tcat.c b/src/bin/tycat.c similarity index 98% rename from src/bin/tcat.c rename to src/bin/tycat.c index 8c455029..68deb272 100644 --- a/src/bin/tcat.c +++ b/src/bin/tycat.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include @@ -60,6 +61,7 @@ main(int argc, char **argv) ecore_file_init(); evas_init(); ecore_evas_init(); + edje_init(); ee = ecore_evas_buffer_new(1, 1); if (ee) { @@ -149,6 +151,7 @@ main(int argc, char **argv) // ecore_main_loop_begin(); ecore_evas_free(ee); } + edje_shutdown(); ecore_evas_shutdown(); evas_shutdown(); ecore_file_shutdown();