services: put the files related tzsh service into src/services directory. 19/67319/3
authorSeunghun Lee <shiin.lee@samsung.com>
Tue, 26 Apr 2016 08:42:35 +0000 (17:42 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Tue, 26 Apr 2016 12:56:06 +0000 (05:56 -0700)
Change-Id: Ic53f9f0e7618b26eb884b56677b48ea329ffe9fa

13 files changed:
src/Makefile.am
src/services/e_mod_gesture.c [moved from src/e_mod_gesture.c with 100% similarity]
src/services/e_mod_gesture.h [moved from src/e_mod_gesture.h with 100% similarity]
src/services/e_mod_lockscreen.c [moved from src/e_mod_lockscreen.c with 100% similarity]
src/services/e_mod_lockscreen.h [moved from src/e_mod_lockscreen.h with 100% similarity]
src/services/e_mod_quickpanel.c [moved from src/e_mod_quickpanel.c with 100% similarity]
src/services/e_mod_quickpanel.h [moved from src/e_mod_quickpanel.h with 100% similarity]
src/services/e_mod_region.c [moved from src/e_mod_region.c with 100% similarity]
src/services/e_mod_region.h [moved from src/e_mod_region.h with 100% similarity]
src/services/e_mod_transit.c [moved from src/e_mod_transit.c with 100% similarity]
src/services/e_mod_transit.h [moved from src/e_mod_transit.h with 100% similarity]
src/services/e_mod_volume.c [moved from src/e_mod_volume.c with 100% similarity]
src/services/e_mod_volume.h [moved from src/e_mod_volume.h with 100% similarity]

index b971bd7..27011ee 100644 (file)
@@ -1,6 +1,7 @@
 MAINTAINERCLEANFILES = Makefile.in
 
-AM_CPPFLAGS = -I./rotation
+AM_CPPFLAGS = -I./rotation \
+              -I./services
 
 MODULE = e-mod-tizen-wm-policy
 
@@ -17,6 +18,17 @@ ROT_SRC  = rotation/e_mod_rotation.c \
            rotation/e_mod_rotation_settings.c \
            rotation/e_mod_rotation_settings.h
 
+SRVS_SRC = services/e_mod_quickpanel.c \
+           services/e_mod_quickpanel.h \
+           services/e_mod_lockscreen.h \
+           services/e_mod_lockscreen.c \
+           services/e_mod_transit.c    \
+           services/e_mod_transit.h    \
+           services/e_mod_gesture.c    \
+           services/e_mod_gesture.h    \
+           services/e_mod_region.h     \
+           services/e_mod_region.c
+
 if HAVE_AUTO_ROTATION
 ROT_SRC  += rotation/e_mod_sensord.c \
             rotation/e_mod_sensord.h
@@ -26,18 +38,13 @@ if HAVE_WAYLAND_ONLY
 WL_SRC   += e_mod_wl.c \
             e_mod_wl.h \
             tizen_policy_ext-protocol.c \
-            tizen_policy_ext-server-protocol.h \
-            e_mod_quickpanel.c \
-            e_mod_quickpanel.h \
-            e_mod_volume.c \
-            e_mod_volume.h \
-            e_mod_lockscreen.c \
-            e_mod_lockscreen.h \
-            e_mod_gesture.c \
-            e_mod_gesture.h
+            tizen_policy_ext-server-protocol.h
 
 ROT_SRC  += rotation/e_mod_rotation_wl.c \
             rotation/e_mod_rotation_wl.h 
+
+SRVS_SRC += services/e_mod_volume.c \
+            services/e_mod_volume.h
 endif
 
 module_la_SOURCES      = e_mod_config.c \
@@ -50,14 +57,11 @@ module_la_SOURCES      = e_mod_config.c \
                          e_mod_keyboard.h \
                          e_mod_stack.c \
                          e_mod_private_data.h \
-                         e_mod_transit.c \
-                         e_mod_transit.h \
                          e_mod_transform_mode.c \
                          e_mod_transform_mode.h \
-                         e_mod_region.c \
-                         e_mod_region.h \
                          $(WL_SRC) \
-                         $(ROT_SRC)
+                         $(ROT_SRC) \
+                         $(SRVS_SRC)
 
 module_la_LIBADD       =
 module_la_CFLAGS       = @ENLIGHTENMENT_CFLAGS@ @TZSH_SERVER_CFLAGS@ @TTRACE_CFLAGS@ @CYNARA_CFLAGS@