diff -Nru kylin-greeter-16.10.1/AUTHORS kylin-greeter-17.04.0/AUTHORS --- kylin-greeter-16.10.1/AUTHORS 2015-10-19 04:13:01.000000000 +0000 +++ kylin-greeter-17.04.0/AUTHORS 2017-03-16 01:54:32.000000000 +0000 @@ -1 +1,2 @@ Modified by : zhangchao + handsome_feng diff -Nru kylin-greeter-16.10.1/configure.ac kylin-greeter-17.04.0/configure.ac --- kylin-greeter-16.10.1/configure.ac 2016-08-17 08:55:42.000000000 +0000 +++ kylin-greeter-17.04.0/configure.ac 2017-03-16 01:54:32.000000000 +0000 @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(kylin-greeter, 16.10.0) +AC_INIT(kylin-greeter, 17.04.0) AC_CONFIG_MACRO_DIR(m4) AM_INIT_AUTOMAKE AM_PROG_CC_C_O Binary files /tmp/tmpamOBUb/DWjyw8bDqU/kylin-greeter-16.10.1/data/background.png and /tmp/tmpamOBUb/IxD_qiCwrv/kylin-greeter-17.04.0/data/background.png differ Binary files /tmp/tmpamOBUb/DWjyw8bDqU/kylin-greeter-16.10.1/data/logo.png and /tmp/tmpamOBUb/IxD_qiCwrv/kylin-greeter-17.04.0/data/logo.png differ diff -Nru kylin-greeter-16.10.1/data/Makefile.am kylin-greeter-17.04.0/data/Makefile.am --- kylin-greeter-16.10.1/data/Makefile.am 2016-08-17 05:52:49.000000000 +0000 +++ kylin-greeter-17.04.0/data/Makefile.am 2017-03-16 01:54:32.000000000 +0000 @@ -42,6 +42,7 @@ keyboardbutton_active.png \ shutdownbutton.png \ ubuntu_badge.png \ + ukui_badge.png \ unknown_badge.png @GSETTINGS_RULES@ Binary files /tmp/tmpamOBUb/DWjyw8bDqU/kylin-greeter-16.10.1/data/ukui_badge.png and /tmp/tmpamOBUb/IxD_qiCwrv/kylin-greeter-17.04.0/data/ukui_badge.png differ diff -Nru kylin-greeter-16.10.1/debian/changelog kylin-greeter-17.04.0/debian/changelog --- kylin-greeter-16.10.1/debian/changelog 2016-10-03 06:18:45.000000000 +0000 +++ kylin-greeter-17.04.0/debian/changelog 2017-03-16 01:54:32.000000000 +0000 @@ -1,3 +1,10 @@ +kylin-greeter (17.04.0) zesty; urgency=medium + + * Added support for UKUI. + * Updated the background.png. + + -- handsome_feng Thu, 16 Mar 2017 09:54:32 +0800 + kylin-greeter (16.10.1) yakkety; urgency=medium * fixed the allocation bug when upgrade to gtk3.20 diff -Nru kylin-greeter-16.10.1/debian/rules kylin-greeter-17.04.0/debian/rules --- kylin-greeter-16.10.1/debian/rules 2015-10-19 04:13:01.000000000 +0000 +++ kylin-greeter-17.04.0/debian/rules 2017-03-16 01:54:32.000000000 +0000 @@ -1,4 +1,4 @@ -#!/usr/bin/make -f +#!/usr/bin/make -f LDFLAGS+=-Wl,--as-needed diff -Nru kylin-greeter-16.10.1/debian/watch kylin-greeter-17.04.0/debian/watch --- kylin-greeter-16.10.1/debian/watch 2015-10-19 04:13:01.000000000 +0000 +++ kylin-greeter-17.04.0/debian/watch 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -version=3 -https://launchpad.net/kylin-greeter/+download .*/kylin-greeter-([0-9.]+)\.tar\.gz diff -Nru kylin-greeter-16.10.1/src/kylin_greeter_vala.stamp kylin-greeter-17.04.0/src/kylin_greeter_vala.stamp --- kylin-greeter-16.10.1/src/kylin_greeter_vala.stamp 2016-10-03 02:27:18.000000000 +0000 +++ kylin-greeter-17.04.0/src/kylin_greeter_vala.stamp 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -stamp diff -Nru kylin-greeter-16.10.1/src/logo_generator_vala.stamp kylin-greeter-17.04.0/src/logo_generator_vala.stamp --- kylin-greeter-16.10.1/src/logo_generator_vala.stamp 2016-10-03 02:27:17.000000000 +0000 +++ kylin-greeter-17.04.0/src/logo_generator_vala.stamp 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -stamp diff -Nru kylin-greeter-16.10.1/src/main-window.vala kylin-greeter-17.04.0/src/main-window.vala --- kylin-greeter-16.10.1/src/main-window.vala 2016-10-03 02:26:09.000000000 +0000 +++ kylin-greeter-17.04.0/src/main-window.vala 2017-03-16 01:54:32.000000000 +0000 @@ -86,14 +86,14 @@ login_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); login_box.show (); - login_box.set_spacing(-1); + login_box.set_spacing (-1); background.add (login_box); var buttonbox =new Gtk.HButtonBox (); - + buttonbox.set_layout (Gtk.ButtonBoxStyle.END); - buttonbox.set_spacing(-1); + buttonbox.set_spacing (-1); var shadow_style = ""; try { @@ -109,30 +109,27 @@ { debug ("Internal error loading buttonbox style: %s", e.message); } - buttonbox.set_size_request (-1,BUTTONBOX_HEIGHT); + buttonbox.set_size_request (-1, BUTTONBOX_HEIGHT); buttonbox.show (); var buttonbox_align = new Gtk.Alignment (1.0f,1.0f, 0.0f, 0.0f); // Hack to avoid gtk 3.20's new allocate logic, which messes us up. buttonbox_align.resize_mode = Gtk.ResizeMode.QUEUE; - buttonbox_align.show(); - + buttonbox_align.show (); + login_box.add (buttonbox_align); - buttonbox_align.add(buttonbox); + buttonbox_align.add (buttonbox); UnityGreeter.add_style_class (buttonbox); - - //LP:#1524662,send SIGTERM to onboard,fix onboard "enter" hangs UnityGreeter.singleton.starting_session.connect (cleanup); - //add onboard button var a11yalign = new Gtk.Alignment (1.0f,0.0f, 0.0f, 0.0f); // Hack to avoid gtk 3.20's new allocate logic, which messes us up. a11yalign.resize_mode = Gtk.ResizeMode.QUEUE; - a11yalign.show(); - a11yalign.set_size_request(50,-1); - buttonbox.add(a11yalign); + a11yalign.show (); + a11yalign.set_size_request (50,-1); + buttonbox.add (a11yalign); a11ybutton = new Gtk.ToggleButton (); Gtk.button_set_focus_on_click (a11ybutton, false); a11ybutton.can_focus = false; @@ -143,8 +140,7 @@ a11ybutton.toggled.connect (keyboardbutton_clicked_cb); a11yalign.add (a11ybutton); UnityGreeter.add_style_class (a11ybutton); - - + //add shutdown_button var shutdownbutton_align = new Gtk.Alignment (0.5f, 0.0f, 0.0f,0.0f); // Hack to avoid gtk 3.20's new allocate logic, which messes us up. @@ -160,54 +156,48 @@ shutdownbutton_image.show (); shutdownbutton.add (shutdownbutton_image); shutdownbutton.clicked.connect (shutdownbutton_clicked_cb); - shutdownbutton_align.add (shutdownbutton); + shutdownbutton_align.add (shutdownbutton); UnityGreeter.add_style_class (shutdownbutton); - //add scroll_up_button + //add scroll_up_button scroll_up_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); - scroll_up_box.show(); + scroll_up_box.show (); scroll_up_button_align = new Gtk.Alignment (0.5f, 1.0f, 0.0f,0.0f); // Hack to avoid gtk 3.20's new allocate logic, which messes us up. scroll_up_button_align.resize_mode = Gtk.ResizeMode.QUEUE; scroll_up_button_align.show (); scroll_up_box.set_size_request (-1,SCROLL_BUTTON_HEIGHT); - scroll_up_box.add(scroll_up_button_align); + scroll_up_box.add (scroll_up_button_align); UnityGreeter.add_style_class (scroll_up_button_align); scroll_up_button = new Gtk.Button (); Gtk.button_set_focus_on_click (scroll_up_button, false); scroll_up_button.can_focus = false; - scroll_up_button_cannot_click_image.show(); - scroll_up_button_can_click_image.show(); + scroll_up_button_cannot_click_image.show (); + scroll_up_button_can_click_image.show (); scroll_up_button.set_image (scroll_up_button_cannot_click_image); scroll_up_button.clicked.connect (scroll_up_button_clicked_cb); scroll_up_button_align.add (scroll_up_button); UnityGreeter.add_style_class (scroll_up_button); - hbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); hbox.expand = true; hbox.show (); login_box.add (hbox); - login_box.add (scroll_up_box); - + var align = new Gtk.Alignment (0.0f, 0.0f, 0.0f, 0.0f);//users table position // Hack to avoid gtk 3.20's new allocate logic, which messes us up. align.resize_mode = Gtk.ResizeMode.QUEUE; - align.show (); - hbox.add (align); - + stack = new ListStack (); stack.show (); align.add (stack); add_user_list (); - - - //add scroll_down_button + // Add scroll_down_button scroll_down_box = new Gtk.Box (Gtk.Orientation.VERTICAL, 0); scroll_down_box.show(); scroll_down_button_align = new Gtk.Alignment (1.0f, 0.0f, 1.0f,0.0f); @@ -215,7 +205,7 @@ scroll_down_button_align.resize_mode = Gtk.ResizeMode.QUEUE; scroll_down_button_align.show (); scroll_down_box.set_size_request (-1,SCROLL_BUTTON_HEIGHT); - scroll_down_box.add(scroll_down_button_align); + scroll_down_box.add (scroll_down_button_align); UnityGreeter.add_style_class (scroll_down_button_align); scroll_down_button = new Gtk.Button (); login_box.add (scroll_down_box); @@ -229,14 +219,12 @@ scroll_down_button_align.add (scroll_down_button); UnityGreeter.add_style_class (scroll_down_button); - - //add bottom_box var bottom_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0); bottom_box.show (); bottom_box.set_size_request (-1, BOTTOM_HEIGHT); login_box.add (bottom_box); - + if (UnityGreeter.singleton.test_mode) { /* Simulate an 800x600 monitor to the left of a 640x480 monitor */ @@ -281,29 +269,24 @@ public void push_list (GreeterList widget) { stack.push (widget); - } public void pop_list () { - stack.pop (); } public override void size_allocate (Gtk.Allocation allocation) { base.size_allocate (allocation); - - } private void shutdownbutton_clicked_cb (Gtk.Button button) { - //debug ("shutdownbutton_clicked~~~~~~~~~~~~~~~~~~~~~~~~~~~~" ); - - show_shutdown_dialog (ShutdownDialogType.SHUTDOWN); + //debug ("shutdownbutton_clicked~~~~~~~~~~~~~~~~~~~~~~~~~~~~" ); + show_shutdown_dialog (ShutdownDialogType.SHUTDOWN); } - + private void keyboardbutton_clicked_cb (Gtk.ToggleButton button) { UGSettings.set_boolean (UGSettings.KEY_ONSCREEN_KEYBOARD, button.active); @@ -378,7 +361,7 @@ stack.top().scroll (GreeterList.ScrollTarget.DOWN); } - + private void monitors_changed_cb (Gdk.Screen screen) { int primary = screen.get_primary_monitor (); @@ -406,7 +389,7 @@ resize (screen.get_width (), screen.get_height ()); move (0, 0); move_to_monitor (primary_monitor); - + } /* Check if a monitor has a unique position */ @@ -486,7 +469,7 @@ private void add_user_list () { - + greeter_list = new UserList (background); greeter_list.show (); UnityGreeter.add_style_class (greeter_list); @@ -602,7 +585,6 @@ return true; } break; - } return base.key_press_event (event); @@ -651,7 +633,7 @@ scroll_down_button.hide(); scroll_up_button.hide(); } - + public void set_scroll_up_button_image(bool can_click) { if(can_click) @@ -673,5 +655,4 @@ { a11ybutton.hide(); } - } diff -Nru kylin-greeter-16.10.1/src/session-list.vala kylin-greeter-17.04.0/src/session-list.vala --- kylin-greeter-16.10.1/src/session-list.vala 2016-08-17 05:52:49.000000000 +0000 +++ kylin-greeter-17.04.0/src/session-list.vala 2017-03-16 01:54:32.000000000 +0000 @@ -135,6 +135,8 @@ case "kde-plasma": case "plasma": return "kde_badge.png"; + case "ukui": + return "ukui_badge.png"; case "xterm": return "recovery_console_badge.png"; case "remote-login": diff -Nru kylin-greeter-16.10.1/tests/Makefile kylin-greeter-17.04.0/tests/Makefile --- kylin-greeter-16.10.1/tests/Makefile 2016-10-03 02:27:16.000000000 +0000 +++ kylin-greeter-17.04.0/tests/Makefile 1970-01-01 00:00:00.000000000 +0000 @@ -1,1258 +0,0 @@ -# Makefile.in generated by automake 1.15 from Makefile.am. -# tests/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994-2014 Free Software Foundation, Inc. - -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -# -*- Mode: Automake; indent-tabs-mode: t; tab-width: 4 -*- - -am__is_gnu_make = { \ - if test -z '$(MAKELEVEL)'; then \ - false; \ - elif test -n '$(MAKE_HOST)'; then \ - true; \ - elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ - true; \ - else \ - false; \ - fi; \ -} -am__make_running_with_option = \ - case $${target_option-} in \ - ?) ;; \ - *) echo "am__make_running_with_option: internal error: invalid" \ - "target option '$${target_option-}' specified" >&2; \ - exit 1;; \ - esac; \ - has_opt=no; \ - sane_makeflags=$$MAKEFLAGS; \ - if $(am__is_gnu_make); then \ - sane_makeflags=$$MFLAGS; \ - else \ - case $$MAKEFLAGS in \ - *\\[\ \ ]*) \ - bs=\\; \ - sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ - | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ - esac; \ - fi; \ - skip_next=no; \ - strip_trailopt () \ - { \ - flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ - }; \ - for flg in $$sane_makeflags; do \ - test $$skip_next = yes && { skip_next=no; continue; }; \ - case $$flg in \ - *=*|--*) continue;; \ - -*I) strip_trailopt 'I'; skip_next=yes;; \ - -*I?*) strip_trailopt 'I';; \ - -*O) strip_trailopt 'O'; skip_next=yes;; \ - -*O?*) strip_trailopt 'O';; \ - -*l) strip_trailopt 'l'; skip_next=yes;; \ - -*l?*) strip_trailopt 'l';; \ - -[dEDm]) skip_next=yes;; \ - -[JT]) skip_next=yes;; \ - esac; \ - case $$flg in \ - *$$target_option*) has_opt=yes; break;; \ - esac; \ - done; \ - test $$has_opt = yes -am__make_dryrun = (target_option=n; $(am__make_running_with_option)) -am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) -pkgdatadir = $(datadir)/kylin-greeter -pkgincludedir = $(includedir)/kylin-greeter -pkglibdir = $(libdir)/kylin-greeter -pkglibexecdir = $(libexecdir)/kylin-greeter -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -check_PROGRAMS = unity-greeter-test$(EXEEXT) -subdir = tests -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -am_unity_greeter_test_OBJECTS = unity_greeter_test-test.$(OBJEXT) \ - unity_greeter_test-test-list.$(OBJEXT) \ - unity_greeter_test-test-main-window.$(OBJEXT) \ - unity_greeter_test-unity-greeter.$(OBJEXT) \ - unity_greeter_test-flat-button.$(OBJEXT) \ - unity_greeter_test-toggle-box.$(OBJEXT) \ - unity_greeter_test-user-list.$(OBJEXT) \ - unity_greeter_test-greeter-list.$(OBJEXT) \ - unity_greeter_test-remote-login-service.$(OBJEXT) \ - unity_greeter_test-background.$(OBJEXT) \ - unity_greeter_test-email-autocompleter.$(OBJEXT) \ - unity_greeter_test-cairo-utils.$(OBJEXT) \ - unity_greeter_test-animate-timer.$(OBJEXT) \ - unity_greeter_test-fadable.$(OBJEXT) \ - unity_greeter_test-fadable-box.$(OBJEXT) \ - unity_greeter_test-dash-box.$(OBJEXT) \ - unity_greeter_test-user-prompt-box.$(OBJEXT) \ - unity_greeter_test-fading-label.$(OBJEXT) \ - unity_greeter_test-cached-image.$(OBJEXT) \ - unity_greeter_test-dash-entry.$(OBJEXT) \ - unity_greeter_test-dash-button.$(OBJEXT) \ - unity_greeter_test-prompt-box.$(OBJEXT) \ - unity_greeter_test-session-list.$(OBJEXT) \ - unity_greeter_test-main-window.$(OBJEXT) \ - unity_greeter_test-list-stack.$(OBJEXT) \ - unity_greeter_test-settings.$(OBJEXT) \ - unity_greeter_test-shutdown-dialog.$(OBJEXT) -unity_greeter_test_OBJECTS = $(am_unity_greeter_test_OBJECTS) -unity_greeter_test_DEPENDENCIES = -unity_greeter_test_LINK = $(CCLD) $(unity_greeter_test_CFLAGS) \ - $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_P = $(am__v_P_$(V)) -am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) -am__v_P_0 = false -am__v_P_1 = : -AM_V_GEN = $(am__v_GEN_$(V)) -am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) -am__v_GEN_0 = @echo " GEN " $@; -am__v_GEN_1 = -AM_V_at = $(am__v_at_$(V)) -am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) -am__v_at_0 = @ -am__v_at_1 = -DEFAULT_INCLUDES = -I. -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f -AM_V_lt = $(am__v_lt_$(V)) -am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) -am__v_lt_0 = --silent -am__v_lt_1 = -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -AM_V_CC = $(am__v_CC_$(V)) -am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) -am__v_CC_0 = @echo " CC " $@; -am__v_CC_1 = -CCLD = $(CC) -LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -AM_V_CCLD = $(am__v_CCLD_$(V)) -am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_CCLD_1 = -VALACOMPILE = $(VALAC) $(AM_VALAFLAGS) $(VALAFLAGS) -AM_V_VALAC = $(am__v_VALAC_$(V)) -am__v_VALAC_ = $(am__v_VALAC_$(AM_DEFAULT_VERBOSITY)) -am__v_VALAC_0 = @echo " VALAC " $@; -am__v_VALAC_1 = -SOURCES = $(unity_greeter_test_SOURCES) -DIST_SOURCES = $(unity_greeter_test_SOURCES) -am__can_run_installinfo = \ - case $$AM_UPDATE_INFO_DIR in \ - n|no|NO) false;; \ - *) (install-info --version) >/dev/null 2>&1;; \ - esac -am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) -# Read a list of newline-separated strings from the standard input, -# and print each of them once, without duplicates. Input order is -# *not* preserved. -am__uniquify_input = $(AWK) '\ - BEGIN { nonempty = 0; } \ - { items[$$0] = 1; nonempty = 1; } \ - END { if (nonempty) { for (i in items) print i; }; } \ -' -# Make sure the list of sources is unique. This is necessary because, -# e.g., the same source file might be shared among _SOURCES variables -# for different programs/libraries. -am__define_uniq_tagged_files = \ - list='$(am__tagged_files)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | $(am__uniquify_input)` -ETAGS = etags -CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ - $(srcdir)/unity_greeter_test_vala.stamp $(top_srcdir)/depcomp \ - ../src/animate-timer.c ../src/background.c \ - ../src/cached-image.c ../src/cairo-utils.c ../src/dash-box.c \ - ../src/dash-button.c ../src/dash-entry.c \ - ../src/email-autocompleter.c ../src/fadable-box.c \ - ../src/fadable.c ../src/fading-label.c ../src/flat-button.c \ - ../src/greeter-list.c ../src/list-stack.c ../src/main-window.c \ - ../src/prompt-box.c ../src/remote-login-service.c \ - ../src/session-list.c ../src/settings.c \ - ../src/shutdown-dialog.c ../src/toggle-box.c \ - ../src/user-list.c ../src/user-prompt-box.c test-list.c \ - test-main-window.c test.c unity-greeter.c -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter/missing aclocal-1.15 -ALL_LINGUAS = -AMTAR = $${TAR-tar} -AM_DEFAULT_VERBOSITY = 1 -AUTOCONF = ${SHELL} /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter/missing autoconf -AUTOHEADER = ${SHELL} /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter/missing autoheader -AUTOMAKE = ${SHELL} /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter/missing automake-1.15 -AWK = mawk -CC = gcc -CCDEPMODE = depmode=none -CFLAGS = -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -CPPFLAGS = -Wdate-time -D_FORTIFY_SOURCE=2 -CYGPATH_W = echo -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -ECHO_C = -ECHO_N = -n -ECHO_T = -EXEEXT = -GETTEXT_PACKAGE = kylin-greeter -GLIB_COMPILE_SCHEMAS = /usr/lib/x86_64-linux-gnu/glib-2.0/glib-compile-schemas -GMSGFMT = /usr/bin/msgfmt -GSETTINGS_DISABLE_SCHEMAS_COMPILE = -INSTALL = /usr/bin/install -c -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = $(install_sh) -c -s -INTLTOOL_EXTRACT = /usr/bin/intltool-extract -INTLTOOL_MERGE = /usr/bin/intltool-merge -INTLTOOL_PERL = /usr/bin/perl -INTLTOOL_UPDATE = /usr/bin/intltool-update -INTLTOOL_V_MERGE = $(INTLTOOL__v_MERGE_$(V)) -INTLTOOL_V_MERGE_OPTIONS = $(intltool__v_merge_options_$(V)) -INTLTOOL__v_MERGE_ = $(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY)) -INTLTOOL__v_MERGE_0 = @echo " ITMRG " $@; -KYLIN_GREETER_CFLAGS = -pthread -D_REENTRANT -I/usr/include/gtk-3.0 -I/usr/include/libindicator3-0.4 -I/usr/include/libido3-0.1 -I/usr/include/lightdm-gobject-1 -I/usr/include/libxml2 -I/usr/include/gnome-desktop-3.0 -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/gtk-3.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/mirclient -I/usr/include/mircommon -I/usr/include/mircookie -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng12 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/freetype2 -I/usr/include/pixman-1 -I/usr/include/gsettings-desktop-schemas -KYLIN_GREETER_LIBS = -lgdk-3 -lindicator3 -lido3-0.1 -llightdm-gobject-1 -lgnome-desktop-3 -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -latk-1.0 -lcairo-gobject -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lcairo -lfreetype -lcanberra -lpixman-1 -lX11 -LDFLAGS = -Wl,-Bsymbolic-functions -Wl,-z,relro -LIBOBJS = -LIBS = -LTLIBOBJS = -MAINT = # -MAKEINFO = ${SHELL} /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter/missing makeinfo -MKDIR_P = /bin/mkdir -p -MSGFMT = /usr/bin/msgfmt -MSGMERGE = /usr/bin/msgmerge -OBJEXT = o -PACKAGE = kylin-greeter -PACKAGE_BUGREPORT = -PACKAGE_NAME = kylin-greeter -PACKAGE_STRING = kylin-greeter 16.10.0 -PACKAGE_TARNAME = kylin-greeter -PACKAGE_URL = -PACKAGE_VERSION = 16.10.0 -PATH_SEPARATOR = : -PKG_CONFIG = /usr/bin/pkg-config -PKG_CONFIG_LIBDIR = -PKG_CONFIG_PATH = -SET_MAKE = -SHELL = /bin/bash -STRIP = -USE_NLS = yes -VALAC = /usr/bin/valac -VERSION = 16.10.0 -XGETTEXT = /usr/bin/xgettext -abs_builddir = /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter/tests -abs_srcdir = /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter/tests -abs_top_builddir = /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter -abs_top_srcdir = /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter -ac_ct_CC = gcc -am__include = include -am__leading_dot = . -am__quote = -am__tar = $${TAR-tar} chof - "$$tardir" -am__untar = $${TAR-tar} xf - -bindir = ${exec_prefix}/bin -build_alias = x86_64-linux-gnu -builddir = . -datadir = ${datarootdir} -datarootdir = ${prefix}/share -docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} -dvidir = ${docdir} -exec_prefix = ${prefix} -gsettingsschemadir = ${datarootdir}/glib-2.0/schemas -host_alias = -htmldir = ${docdir} -includedir = ${prefix}/include -infodir = ${prefix}/share/info -install_sh = ${SHELL} /media/xin/acc3a072-8456-4a44-8515-5f3a7483983c/xin/greeter/kylin-greeter/install-sh -intltool__v_merge_options_ = $(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY)) -intltool__v_merge_options_0 = -q -libdir = ${prefix}/lib/x86_64-linux-gnu -libexecdir = ${prefix}/lib/x86_64-linux-gnu -localedir = ${datarootdir}/locale -localstatedir = /var -mandir = ${prefix}/share/man -mkdir_p = $(MKDIR_P) -oldincludedir = /usr/include -pdfdir = ${docdir} -prefix = /usr -program_transform_name = s,x,x, -psdir = ${docdir} -runstatedir = ${localstatedir}/run -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -srcdir = . -sysconfdir = /etc -target_alias = -top_build_prefix = ../ -top_builddir = .. -top_srcdir = .. -unity_greeter_test_SOURCES = \ - test.vala \ - test-list.vala \ - test-main-window.vala \ - unity-greeter.vala \ - ../src/flat-button.vala \ - ../src/toggle-box.vala \ - ../src/user-list.vala \ - ../src/greeter-list.vala \ - ../src/remote-login-service.vala \ - ../src/background.vala \ - ../src/email-autocompleter.vala \ - ../src/config.vapi \ - ../src/fixes.vapi \ - ../src/cairo-utils.vala \ - ../src/animate-timer.vala \ - ../src/ido.vapi \ - ../src/fadable.vala \ - ../src/fadable-box.vala \ - ../src/dash-box.vala \ - ../src/user-prompt-box.vala \ - ../src/fading-label.vala \ - ../src/cached-image.vala \ - ../src/dash-entry.vala \ - ../src/dash-button.vala \ - ../src/prompt-box.vala \ - ../src/session-list.vala \ - ../src/main-window.vala \ - ../src/list-stack.vala \ - ../src/settings.vala \ - ../src/shutdown-dialog.vala - -unity_greeter_test_CFLAGS = \ - $(UNITY_GREETER_CFLAGS) \ - -w \ - -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \ - -DLOCALEDIR=\""$(localedir)"\" \ - -DVERSION=\"$(VERSION)\" \ - -DCONFIG_FILE=\""$(sysconfdir)/lightdm/unity-greeter.conf"\" \ - -DPKGDATADIR=\""$(pkgdatadir)"\" \ - -DINDICATORDIR=\""$(INDICATORDIR)"\" - -unity_greeter_test_VALAFLAGS = \ - --pkg posix \ - --pkg gtk+-3.0 \ - --pkg gdk-x11-3.0 \ - --pkg gio-unix-2.0 \ - --pkg x11 \ - --pkg liblightdm-gobject-1 \ - --pkg libcanberra \ - --pkg gio-2.0 \ - --pkg pixman-1 \ - --target-glib 2.32 - -unity_greeter_test_LDADD = \ - $(UNITY_GREETER_LIBS) \ - -lm - -CLEANFILES = \ - $(notdir $(unity_greeter_test_SOURCES:.vala=.c)) - -DISTCLEANFILES = \ - Makefile.in - -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .o .obj -$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu tests/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: # $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): # $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): - -clean-checkPROGRAMS: - -test -z "$(check_PROGRAMS)" || rm -f $(check_PROGRAMS) - -unity-greeter-test$(EXEEXT): $(unity_greeter_test_OBJECTS) $(unity_greeter_test_DEPENDENCIES) $(EXTRA_unity_greeter_test_DEPENDENCIES) - @rm -f unity-greeter-test$(EXEEXT) - $(AM_V_CCLD)$(unity_greeter_test_LINK) $(unity_greeter_test_OBJECTS) $(unity_greeter_test_LDADD) $(LIBS) - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -#include ./$(DEPDIR)/unity_greeter_test-animate-timer.Po -#include ./$(DEPDIR)/unity_greeter_test-background.Po -#include ./$(DEPDIR)/unity_greeter_test-cached-image.Po -#include ./$(DEPDIR)/unity_greeter_test-cairo-utils.Po -#include ./$(DEPDIR)/unity_greeter_test-dash-box.Po -#include ./$(DEPDIR)/unity_greeter_test-dash-button.Po -#include ./$(DEPDIR)/unity_greeter_test-dash-entry.Po -#include ./$(DEPDIR)/unity_greeter_test-email-autocompleter.Po -#include ./$(DEPDIR)/unity_greeter_test-fadable-box.Po -#include ./$(DEPDIR)/unity_greeter_test-fadable.Po -#include ./$(DEPDIR)/unity_greeter_test-fading-label.Po -#include ./$(DEPDIR)/unity_greeter_test-flat-button.Po -#include ./$(DEPDIR)/unity_greeter_test-greeter-list.Po -#include ./$(DEPDIR)/unity_greeter_test-list-stack.Po -#include ./$(DEPDIR)/unity_greeter_test-main-window.Po -#include ./$(DEPDIR)/unity_greeter_test-prompt-box.Po -#include ./$(DEPDIR)/unity_greeter_test-remote-login-service.Po -#include ./$(DEPDIR)/unity_greeter_test-session-list.Po -#include ./$(DEPDIR)/unity_greeter_test-settings.Po -#include ./$(DEPDIR)/unity_greeter_test-shutdown-dialog.Po -#include ./$(DEPDIR)/unity_greeter_test-test-list.Po -#include ./$(DEPDIR)/unity_greeter_test-test-main-window.Po -#include ./$(DEPDIR)/unity_greeter_test-test.Po -#include ./$(DEPDIR)/unity_greeter_test-toggle-box.Po -#include ./$(DEPDIR)/unity_greeter_test-unity-greeter.Po -#include ./$(DEPDIR)/unity_greeter_test-user-list.Po -#include ./$(DEPDIR)/unity_greeter_test-user-prompt-box.Po - -.c.o: -# $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -# $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(COMPILE) -c -o $@ $< - -.c.obj: -# $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -# $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -# $(AM_V_CC)source='$<' object='$@' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` - -unity_greeter_test-test.o: test.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-test.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-test.Tpo -c -o unity_greeter_test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-test.Tpo $(DEPDIR)/unity_greeter_test-test.Po -# $(AM_V_CC)source='test.c' object='unity_greeter_test-test.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c - -unity_greeter_test-test.obj: test.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-test.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-test.Tpo -c -o unity_greeter_test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-test.Tpo $(DEPDIR)/unity_greeter_test-test.Po -# $(AM_V_CC)source='test.c' object='unity_greeter_test-test.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi` - -unity_greeter_test-test-list.o: test-list.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-test-list.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-test-list.Tpo -c -o unity_greeter_test-test-list.o `test -f 'test-list.c' || echo '$(srcdir)/'`test-list.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-test-list.Tpo $(DEPDIR)/unity_greeter_test-test-list.Po -# $(AM_V_CC)source='test-list.c' object='unity_greeter_test-test-list.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-test-list.o `test -f 'test-list.c' || echo '$(srcdir)/'`test-list.c - -unity_greeter_test-test-list.obj: test-list.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-test-list.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-test-list.Tpo -c -o unity_greeter_test-test-list.obj `if test -f 'test-list.c'; then $(CYGPATH_W) 'test-list.c'; else $(CYGPATH_W) '$(srcdir)/test-list.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-test-list.Tpo $(DEPDIR)/unity_greeter_test-test-list.Po -# $(AM_V_CC)source='test-list.c' object='unity_greeter_test-test-list.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-test-list.obj `if test -f 'test-list.c'; then $(CYGPATH_W) 'test-list.c'; else $(CYGPATH_W) '$(srcdir)/test-list.c'; fi` - -unity_greeter_test-test-main-window.o: test-main-window.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-test-main-window.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-test-main-window.Tpo -c -o unity_greeter_test-test-main-window.o `test -f 'test-main-window.c' || echo '$(srcdir)/'`test-main-window.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-test-main-window.Tpo $(DEPDIR)/unity_greeter_test-test-main-window.Po -# $(AM_V_CC)source='test-main-window.c' object='unity_greeter_test-test-main-window.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-test-main-window.o `test -f 'test-main-window.c' || echo '$(srcdir)/'`test-main-window.c - -unity_greeter_test-test-main-window.obj: test-main-window.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-test-main-window.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-test-main-window.Tpo -c -o unity_greeter_test-test-main-window.obj `if test -f 'test-main-window.c'; then $(CYGPATH_W) 'test-main-window.c'; else $(CYGPATH_W) '$(srcdir)/test-main-window.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-test-main-window.Tpo $(DEPDIR)/unity_greeter_test-test-main-window.Po -# $(AM_V_CC)source='test-main-window.c' object='unity_greeter_test-test-main-window.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-test-main-window.obj `if test -f 'test-main-window.c'; then $(CYGPATH_W) 'test-main-window.c'; else $(CYGPATH_W) '$(srcdir)/test-main-window.c'; fi` - -unity_greeter_test-unity-greeter.o: unity-greeter.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-unity-greeter.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-unity-greeter.Tpo -c -o unity_greeter_test-unity-greeter.o `test -f 'unity-greeter.c' || echo '$(srcdir)/'`unity-greeter.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-unity-greeter.Tpo $(DEPDIR)/unity_greeter_test-unity-greeter.Po -# $(AM_V_CC)source='unity-greeter.c' object='unity_greeter_test-unity-greeter.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-unity-greeter.o `test -f 'unity-greeter.c' || echo '$(srcdir)/'`unity-greeter.c - -unity_greeter_test-unity-greeter.obj: unity-greeter.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-unity-greeter.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-unity-greeter.Tpo -c -o unity_greeter_test-unity-greeter.obj `if test -f 'unity-greeter.c'; then $(CYGPATH_W) 'unity-greeter.c'; else $(CYGPATH_W) '$(srcdir)/unity-greeter.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-unity-greeter.Tpo $(DEPDIR)/unity_greeter_test-unity-greeter.Po -# $(AM_V_CC)source='unity-greeter.c' object='unity_greeter_test-unity-greeter.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-unity-greeter.obj `if test -f 'unity-greeter.c'; then $(CYGPATH_W) 'unity-greeter.c'; else $(CYGPATH_W) '$(srcdir)/unity-greeter.c'; fi` - -unity_greeter_test-flat-button.o: ../src/flat-button.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-flat-button.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-flat-button.Tpo -c -o unity_greeter_test-flat-button.o `test -f '../src/flat-button.c' || echo '$(srcdir)/'`../src/flat-button.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-flat-button.Tpo $(DEPDIR)/unity_greeter_test-flat-button.Po -# $(AM_V_CC)source='../src/flat-button.c' object='unity_greeter_test-flat-button.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-flat-button.o `test -f '../src/flat-button.c' || echo '$(srcdir)/'`../src/flat-button.c - -unity_greeter_test-flat-button.obj: ../src/flat-button.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-flat-button.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-flat-button.Tpo -c -o unity_greeter_test-flat-button.obj `if test -f '../src/flat-button.c'; then $(CYGPATH_W) '../src/flat-button.c'; else $(CYGPATH_W) '$(srcdir)/../src/flat-button.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-flat-button.Tpo $(DEPDIR)/unity_greeter_test-flat-button.Po -# $(AM_V_CC)source='../src/flat-button.c' object='unity_greeter_test-flat-button.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-flat-button.obj `if test -f '../src/flat-button.c'; then $(CYGPATH_W) '../src/flat-button.c'; else $(CYGPATH_W) '$(srcdir)/../src/flat-button.c'; fi` - -unity_greeter_test-toggle-box.o: ../src/toggle-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-toggle-box.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-toggle-box.Tpo -c -o unity_greeter_test-toggle-box.o `test -f '../src/toggle-box.c' || echo '$(srcdir)/'`../src/toggle-box.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-toggle-box.Tpo $(DEPDIR)/unity_greeter_test-toggle-box.Po -# $(AM_V_CC)source='../src/toggle-box.c' object='unity_greeter_test-toggle-box.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-toggle-box.o `test -f '../src/toggle-box.c' || echo '$(srcdir)/'`../src/toggle-box.c - -unity_greeter_test-toggle-box.obj: ../src/toggle-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-toggle-box.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-toggle-box.Tpo -c -o unity_greeter_test-toggle-box.obj `if test -f '../src/toggle-box.c'; then $(CYGPATH_W) '../src/toggle-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/toggle-box.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-toggle-box.Tpo $(DEPDIR)/unity_greeter_test-toggle-box.Po -# $(AM_V_CC)source='../src/toggle-box.c' object='unity_greeter_test-toggle-box.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-toggle-box.obj `if test -f '../src/toggle-box.c'; then $(CYGPATH_W) '../src/toggle-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/toggle-box.c'; fi` - -unity_greeter_test-user-list.o: ../src/user-list.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-user-list.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-user-list.Tpo -c -o unity_greeter_test-user-list.o `test -f '../src/user-list.c' || echo '$(srcdir)/'`../src/user-list.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-user-list.Tpo $(DEPDIR)/unity_greeter_test-user-list.Po -# $(AM_V_CC)source='../src/user-list.c' object='unity_greeter_test-user-list.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-user-list.o `test -f '../src/user-list.c' || echo '$(srcdir)/'`../src/user-list.c - -unity_greeter_test-user-list.obj: ../src/user-list.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-user-list.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-user-list.Tpo -c -o unity_greeter_test-user-list.obj `if test -f '../src/user-list.c'; then $(CYGPATH_W) '../src/user-list.c'; else $(CYGPATH_W) '$(srcdir)/../src/user-list.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-user-list.Tpo $(DEPDIR)/unity_greeter_test-user-list.Po -# $(AM_V_CC)source='../src/user-list.c' object='unity_greeter_test-user-list.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-user-list.obj `if test -f '../src/user-list.c'; then $(CYGPATH_W) '../src/user-list.c'; else $(CYGPATH_W) '$(srcdir)/../src/user-list.c'; fi` - -unity_greeter_test-greeter-list.o: ../src/greeter-list.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-greeter-list.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-greeter-list.Tpo -c -o unity_greeter_test-greeter-list.o `test -f '../src/greeter-list.c' || echo '$(srcdir)/'`../src/greeter-list.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-greeter-list.Tpo $(DEPDIR)/unity_greeter_test-greeter-list.Po -# $(AM_V_CC)source='../src/greeter-list.c' object='unity_greeter_test-greeter-list.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-greeter-list.o `test -f '../src/greeter-list.c' || echo '$(srcdir)/'`../src/greeter-list.c - -unity_greeter_test-greeter-list.obj: ../src/greeter-list.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-greeter-list.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-greeter-list.Tpo -c -o unity_greeter_test-greeter-list.obj `if test -f '../src/greeter-list.c'; then $(CYGPATH_W) '../src/greeter-list.c'; else $(CYGPATH_W) '$(srcdir)/../src/greeter-list.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-greeter-list.Tpo $(DEPDIR)/unity_greeter_test-greeter-list.Po -# $(AM_V_CC)source='../src/greeter-list.c' object='unity_greeter_test-greeter-list.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-greeter-list.obj `if test -f '../src/greeter-list.c'; then $(CYGPATH_W) '../src/greeter-list.c'; else $(CYGPATH_W) '$(srcdir)/../src/greeter-list.c'; fi` - -unity_greeter_test-remote-login-service.o: ../src/remote-login-service.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-remote-login-service.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-remote-login-service.Tpo -c -o unity_greeter_test-remote-login-service.o `test -f '../src/remote-login-service.c' || echo '$(srcdir)/'`../src/remote-login-service.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-remote-login-service.Tpo $(DEPDIR)/unity_greeter_test-remote-login-service.Po -# $(AM_V_CC)source='../src/remote-login-service.c' object='unity_greeter_test-remote-login-service.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-remote-login-service.o `test -f '../src/remote-login-service.c' || echo '$(srcdir)/'`../src/remote-login-service.c - -unity_greeter_test-remote-login-service.obj: ../src/remote-login-service.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-remote-login-service.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-remote-login-service.Tpo -c -o unity_greeter_test-remote-login-service.obj `if test -f '../src/remote-login-service.c'; then $(CYGPATH_W) '../src/remote-login-service.c'; else $(CYGPATH_W) '$(srcdir)/../src/remote-login-service.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-remote-login-service.Tpo $(DEPDIR)/unity_greeter_test-remote-login-service.Po -# $(AM_V_CC)source='../src/remote-login-service.c' object='unity_greeter_test-remote-login-service.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-remote-login-service.obj `if test -f '../src/remote-login-service.c'; then $(CYGPATH_W) '../src/remote-login-service.c'; else $(CYGPATH_W) '$(srcdir)/../src/remote-login-service.c'; fi` - -unity_greeter_test-background.o: ../src/background.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-background.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-background.Tpo -c -o unity_greeter_test-background.o `test -f '../src/background.c' || echo '$(srcdir)/'`../src/background.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-background.Tpo $(DEPDIR)/unity_greeter_test-background.Po -# $(AM_V_CC)source='../src/background.c' object='unity_greeter_test-background.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-background.o `test -f '../src/background.c' || echo '$(srcdir)/'`../src/background.c - -unity_greeter_test-background.obj: ../src/background.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-background.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-background.Tpo -c -o unity_greeter_test-background.obj `if test -f '../src/background.c'; then $(CYGPATH_W) '../src/background.c'; else $(CYGPATH_W) '$(srcdir)/../src/background.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-background.Tpo $(DEPDIR)/unity_greeter_test-background.Po -# $(AM_V_CC)source='../src/background.c' object='unity_greeter_test-background.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-background.obj `if test -f '../src/background.c'; then $(CYGPATH_W) '../src/background.c'; else $(CYGPATH_W) '$(srcdir)/../src/background.c'; fi` - -unity_greeter_test-email-autocompleter.o: ../src/email-autocompleter.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-email-autocompleter.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-email-autocompleter.Tpo -c -o unity_greeter_test-email-autocompleter.o `test -f '../src/email-autocompleter.c' || echo '$(srcdir)/'`../src/email-autocompleter.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-email-autocompleter.Tpo $(DEPDIR)/unity_greeter_test-email-autocompleter.Po -# $(AM_V_CC)source='../src/email-autocompleter.c' object='unity_greeter_test-email-autocompleter.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-email-autocompleter.o `test -f '../src/email-autocompleter.c' || echo '$(srcdir)/'`../src/email-autocompleter.c - -unity_greeter_test-email-autocompleter.obj: ../src/email-autocompleter.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-email-autocompleter.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-email-autocompleter.Tpo -c -o unity_greeter_test-email-autocompleter.obj `if test -f '../src/email-autocompleter.c'; then $(CYGPATH_W) '../src/email-autocompleter.c'; else $(CYGPATH_W) '$(srcdir)/../src/email-autocompleter.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-email-autocompleter.Tpo $(DEPDIR)/unity_greeter_test-email-autocompleter.Po -# $(AM_V_CC)source='../src/email-autocompleter.c' object='unity_greeter_test-email-autocompleter.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-email-autocompleter.obj `if test -f '../src/email-autocompleter.c'; then $(CYGPATH_W) '../src/email-autocompleter.c'; else $(CYGPATH_W) '$(srcdir)/../src/email-autocompleter.c'; fi` - -unity_greeter_test-cairo-utils.o: ../src/cairo-utils.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-cairo-utils.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-cairo-utils.Tpo -c -o unity_greeter_test-cairo-utils.o `test -f '../src/cairo-utils.c' || echo '$(srcdir)/'`../src/cairo-utils.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-cairo-utils.Tpo $(DEPDIR)/unity_greeter_test-cairo-utils.Po -# $(AM_V_CC)source='../src/cairo-utils.c' object='unity_greeter_test-cairo-utils.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-cairo-utils.o `test -f '../src/cairo-utils.c' || echo '$(srcdir)/'`../src/cairo-utils.c - -unity_greeter_test-cairo-utils.obj: ../src/cairo-utils.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-cairo-utils.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-cairo-utils.Tpo -c -o unity_greeter_test-cairo-utils.obj `if test -f '../src/cairo-utils.c'; then $(CYGPATH_W) '../src/cairo-utils.c'; else $(CYGPATH_W) '$(srcdir)/../src/cairo-utils.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-cairo-utils.Tpo $(DEPDIR)/unity_greeter_test-cairo-utils.Po -# $(AM_V_CC)source='../src/cairo-utils.c' object='unity_greeter_test-cairo-utils.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-cairo-utils.obj `if test -f '../src/cairo-utils.c'; then $(CYGPATH_W) '../src/cairo-utils.c'; else $(CYGPATH_W) '$(srcdir)/../src/cairo-utils.c'; fi` - -unity_greeter_test-animate-timer.o: ../src/animate-timer.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-animate-timer.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-animate-timer.Tpo -c -o unity_greeter_test-animate-timer.o `test -f '../src/animate-timer.c' || echo '$(srcdir)/'`../src/animate-timer.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-animate-timer.Tpo $(DEPDIR)/unity_greeter_test-animate-timer.Po -# $(AM_V_CC)source='../src/animate-timer.c' object='unity_greeter_test-animate-timer.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-animate-timer.o `test -f '../src/animate-timer.c' || echo '$(srcdir)/'`../src/animate-timer.c - -unity_greeter_test-animate-timer.obj: ../src/animate-timer.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-animate-timer.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-animate-timer.Tpo -c -o unity_greeter_test-animate-timer.obj `if test -f '../src/animate-timer.c'; then $(CYGPATH_W) '../src/animate-timer.c'; else $(CYGPATH_W) '$(srcdir)/../src/animate-timer.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-animate-timer.Tpo $(DEPDIR)/unity_greeter_test-animate-timer.Po -# $(AM_V_CC)source='../src/animate-timer.c' object='unity_greeter_test-animate-timer.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-animate-timer.obj `if test -f '../src/animate-timer.c'; then $(CYGPATH_W) '../src/animate-timer.c'; else $(CYGPATH_W) '$(srcdir)/../src/animate-timer.c'; fi` - -unity_greeter_test-fadable.o: ../src/fadable.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-fadable.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-fadable.Tpo -c -o unity_greeter_test-fadable.o `test -f '../src/fadable.c' || echo '$(srcdir)/'`../src/fadable.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-fadable.Tpo $(DEPDIR)/unity_greeter_test-fadable.Po -# $(AM_V_CC)source='../src/fadable.c' object='unity_greeter_test-fadable.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-fadable.o `test -f '../src/fadable.c' || echo '$(srcdir)/'`../src/fadable.c - -unity_greeter_test-fadable.obj: ../src/fadable.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-fadable.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-fadable.Tpo -c -o unity_greeter_test-fadable.obj `if test -f '../src/fadable.c'; then $(CYGPATH_W) '../src/fadable.c'; else $(CYGPATH_W) '$(srcdir)/../src/fadable.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-fadable.Tpo $(DEPDIR)/unity_greeter_test-fadable.Po -# $(AM_V_CC)source='../src/fadable.c' object='unity_greeter_test-fadable.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-fadable.obj `if test -f '../src/fadable.c'; then $(CYGPATH_W) '../src/fadable.c'; else $(CYGPATH_W) '$(srcdir)/../src/fadable.c'; fi` - -unity_greeter_test-fadable-box.o: ../src/fadable-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-fadable-box.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-fadable-box.Tpo -c -o unity_greeter_test-fadable-box.o `test -f '../src/fadable-box.c' || echo '$(srcdir)/'`../src/fadable-box.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-fadable-box.Tpo $(DEPDIR)/unity_greeter_test-fadable-box.Po -# $(AM_V_CC)source='../src/fadable-box.c' object='unity_greeter_test-fadable-box.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-fadable-box.o `test -f '../src/fadable-box.c' || echo '$(srcdir)/'`../src/fadable-box.c - -unity_greeter_test-fadable-box.obj: ../src/fadable-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-fadable-box.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-fadable-box.Tpo -c -o unity_greeter_test-fadable-box.obj `if test -f '../src/fadable-box.c'; then $(CYGPATH_W) '../src/fadable-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/fadable-box.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-fadable-box.Tpo $(DEPDIR)/unity_greeter_test-fadable-box.Po -# $(AM_V_CC)source='../src/fadable-box.c' object='unity_greeter_test-fadable-box.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-fadable-box.obj `if test -f '../src/fadable-box.c'; then $(CYGPATH_W) '../src/fadable-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/fadable-box.c'; fi` - -unity_greeter_test-dash-box.o: ../src/dash-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-dash-box.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-dash-box.Tpo -c -o unity_greeter_test-dash-box.o `test -f '../src/dash-box.c' || echo '$(srcdir)/'`../src/dash-box.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-dash-box.Tpo $(DEPDIR)/unity_greeter_test-dash-box.Po -# $(AM_V_CC)source='../src/dash-box.c' object='unity_greeter_test-dash-box.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-dash-box.o `test -f '../src/dash-box.c' || echo '$(srcdir)/'`../src/dash-box.c - -unity_greeter_test-dash-box.obj: ../src/dash-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-dash-box.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-dash-box.Tpo -c -o unity_greeter_test-dash-box.obj `if test -f '../src/dash-box.c'; then $(CYGPATH_W) '../src/dash-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/dash-box.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-dash-box.Tpo $(DEPDIR)/unity_greeter_test-dash-box.Po -# $(AM_V_CC)source='../src/dash-box.c' object='unity_greeter_test-dash-box.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-dash-box.obj `if test -f '../src/dash-box.c'; then $(CYGPATH_W) '../src/dash-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/dash-box.c'; fi` - -unity_greeter_test-user-prompt-box.o: ../src/user-prompt-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-user-prompt-box.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-user-prompt-box.Tpo -c -o unity_greeter_test-user-prompt-box.o `test -f '../src/user-prompt-box.c' || echo '$(srcdir)/'`../src/user-prompt-box.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-user-prompt-box.Tpo $(DEPDIR)/unity_greeter_test-user-prompt-box.Po -# $(AM_V_CC)source='../src/user-prompt-box.c' object='unity_greeter_test-user-prompt-box.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-user-prompt-box.o `test -f '../src/user-prompt-box.c' || echo '$(srcdir)/'`../src/user-prompt-box.c - -unity_greeter_test-user-prompt-box.obj: ../src/user-prompt-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-user-prompt-box.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-user-prompt-box.Tpo -c -o unity_greeter_test-user-prompt-box.obj `if test -f '../src/user-prompt-box.c'; then $(CYGPATH_W) '../src/user-prompt-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/user-prompt-box.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-user-prompt-box.Tpo $(DEPDIR)/unity_greeter_test-user-prompt-box.Po -# $(AM_V_CC)source='../src/user-prompt-box.c' object='unity_greeter_test-user-prompt-box.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-user-prompt-box.obj `if test -f '../src/user-prompt-box.c'; then $(CYGPATH_W) '../src/user-prompt-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/user-prompt-box.c'; fi` - -unity_greeter_test-fading-label.o: ../src/fading-label.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-fading-label.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-fading-label.Tpo -c -o unity_greeter_test-fading-label.o `test -f '../src/fading-label.c' || echo '$(srcdir)/'`../src/fading-label.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-fading-label.Tpo $(DEPDIR)/unity_greeter_test-fading-label.Po -# $(AM_V_CC)source='../src/fading-label.c' object='unity_greeter_test-fading-label.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-fading-label.o `test -f '../src/fading-label.c' || echo '$(srcdir)/'`../src/fading-label.c - -unity_greeter_test-fading-label.obj: ../src/fading-label.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-fading-label.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-fading-label.Tpo -c -o unity_greeter_test-fading-label.obj `if test -f '../src/fading-label.c'; then $(CYGPATH_W) '../src/fading-label.c'; else $(CYGPATH_W) '$(srcdir)/../src/fading-label.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-fading-label.Tpo $(DEPDIR)/unity_greeter_test-fading-label.Po -# $(AM_V_CC)source='../src/fading-label.c' object='unity_greeter_test-fading-label.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-fading-label.obj `if test -f '../src/fading-label.c'; then $(CYGPATH_W) '../src/fading-label.c'; else $(CYGPATH_W) '$(srcdir)/../src/fading-label.c'; fi` - -unity_greeter_test-cached-image.o: ../src/cached-image.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-cached-image.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-cached-image.Tpo -c -o unity_greeter_test-cached-image.o `test -f '../src/cached-image.c' || echo '$(srcdir)/'`../src/cached-image.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-cached-image.Tpo $(DEPDIR)/unity_greeter_test-cached-image.Po -# $(AM_V_CC)source='../src/cached-image.c' object='unity_greeter_test-cached-image.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-cached-image.o `test -f '../src/cached-image.c' || echo '$(srcdir)/'`../src/cached-image.c - -unity_greeter_test-cached-image.obj: ../src/cached-image.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-cached-image.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-cached-image.Tpo -c -o unity_greeter_test-cached-image.obj `if test -f '../src/cached-image.c'; then $(CYGPATH_W) '../src/cached-image.c'; else $(CYGPATH_W) '$(srcdir)/../src/cached-image.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-cached-image.Tpo $(DEPDIR)/unity_greeter_test-cached-image.Po -# $(AM_V_CC)source='../src/cached-image.c' object='unity_greeter_test-cached-image.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-cached-image.obj `if test -f '../src/cached-image.c'; then $(CYGPATH_W) '../src/cached-image.c'; else $(CYGPATH_W) '$(srcdir)/../src/cached-image.c'; fi` - -unity_greeter_test-dash-entry.o: ../src/dash-entry.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-dash-entry.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-dash-entry.Tpo -c -o unity_greeter_test-dash-entry.o `test -f '../src/dash-entry.c' || echo '$(srcdir)/'`../src/dash-entry.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-dash-entry.Tpo $(DEPDIR)/unity_greeter_test-dash-entry.Po -# $(AM_V_CC)source='../src/dash-entry.c' object='unity_greeter_test-dash-entry.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-dash-entry.o `test -f '../src/dash-entry.c' || echo '$(srcdir)/'`../src/dash-entry.c - -unity_greeter_test-dash-entry.obj: ../src/dash-entry.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-dash-entry.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-dash-entry.Tpo -c -o unity_greeter_test-dash-entry.obj `if test -f '../src/dash-entry.c'; then $(CYGPATH_W) '../src/dash-entry.c'; else $(CYGPATH_W) '$(srcdir)/../src/dash-entry.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-dash-entry.Tpo $(DEPDIR)/unity_greeter_test-dash-entry.Po -# $(AM_V_CC)source='../src/dash-entry.c' object='unity_greeter_test-dash-entry.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-dash-entry.obj `if test -f '../src/dash-entry.c'; then $(CYGPATH_W) '../src/dash-entry.c'; else $(CYGPATH_W) '$(srcdir)/../src/dash-entry.c'; fi` - -unity_greeter_test-dash-button.o: ../src/dash-button.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-dash-button.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-dash-button.Tpo -c -o unity_greeter_test-dash-button.o `test -f '../src/dash-button.c' || echo '$(srcdir)/'`../src/dash-button.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-dash-button.Tpo $(DEPDIR)/unity_greeter_test-dash-button.Po -# $(AM_V_CC)source='../src/dash-button.c' object='unity_greeter_test-dash-button.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-dash-button.o `test -f '../src/dash-button.c' || echo '$(srcdir)/'`../src/dash-button.c - -unity_greeter_test-dash-button.obj: ../src/dash-button.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-dash-button.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-dash-button.Tpo -c -o unity_greeter_test-dash-button.obj `if test -f '../src/dash-button.c'; then $(CYGPATH_W) '../src/dash-button.c'; else $(CYGPATH_W) '$(srcdir)/../src/dash-button.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-dash-button.Tpo $(DEPDIR)/unity_greeter_test-dash-button.Po -# $(AM_V_CC)source='../src/dash-button.c' object='unity_greeter_test-dash-button.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-dash-button.obj `if test -f '../src/dash-button.c'; then $(CYGPATH_W) '../src/dash-button.c'; else $(CYGPATH_W) '$(srcdir)/../src/dash-button.c'; fi` - -unity_greeter_test-prompt-box.o: ../src/prompt-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-prompt-box.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-prompt-box.Tpo -c -o unity_greeter_test-prompt-box.o `test -f '../src/prompt-box.c' || echo '$(srcdir)/'`../src/prompt-box.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-prompt-box.Tpo $(DEPDIR)/unity_greeter_test-prompt-box.Po -# $(AM_V_CC)source='../src/prompt-box.c' object='unity_greeter_test-prompt-box.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-prompt-box.o `test -f '../src/prompt-box.c' || echo '$(srcdir)/'`../src/prompt-box.c - -unity_greeter_test-prompt-box.obj: ../src/prompt-box.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-prompt-box.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-prompt-box.Tpo -c -o unity_greeter_test-prompt-box.obj `if test -f '../src/prompt-box.c'; then $(CYGPATH_W) '../src/prompt-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/prompt-box.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-prompt-box.Tpo $(DEPDIR)/unity_greeter_test-prompt-box.Po -# $(AM_V_CC)source='../src/prompt-box.c' object='unity_greeter_test-prompt-box.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-prompt-box.obj `if test -f '../src/prompt-box.c'; then $(CYGPATH_W) '../src/prompt-box.c'; else $(CYGPATH_W) '$(srcdir)/../src/prompt-box.c'; fi` - -unity_greeter_test-session-list.o: ../src/session-list.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-session-list.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-session-list.Tpo -c -o unity_greeter_test-session-list.o `test -f '../src/session-list.c' || echo '$(srcdir)/'`../src/session-list.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-session-list.Tpo $(DEPDIR)/unity_greeter_test-session-list.Po -# $(AM_V_CC)source='../src/session-list.c' object='unity_greeter_test-session-list.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-session-list.o `test -f '../src/session-list.c' || echo '$(srcdir)/'`../src/session-list.c - -unity_greeter_test-session-list.obj: ../src/session-list.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-session-list.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-session-list.Tpo -c -o unity_greeter_test-session-list.obj `if test -f '../src/session-list.c'; then $(CYGPATH_W) '../src/session-list.c'; else $(CYGPATH_W) '$(srcdir)/../src/session-list.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-session-list.Tpo $(DEPDIR)/unity_greeter_test-session-list.Po -# $(AM_V_CC)source='../src/session-list.c' object='unity_greeter_test-session-list.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-session-list.obj `if test -f '../src/session-list.c'; then $(CYGPATH_W) '../src/session-list.c'; else $(CYGPATH_W) '$(srcdir)/../src/session-list.c'; fi` - -unity_greeter_test-main-window.o: ../src/main-window.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-main-window.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-main-window.Tpo -c -o unity_greeter_test-main-window.o `test -f '../src/main-window.c' || echo '$(srcdir)/'`../src/main-window.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-main-window.Tpo $(DEPDIR)/unity_greeter_test-main-window.Po -# $(AM_V_CC)source='../src/main-window.c' object='unity_greeter_test-main-window.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-main-window.o `test -f '../src/main-window.c' || echo '$(srcdir)/'`../src/main-window.c - -unity_greeter_test-main-window.obj: ../src/main-window.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-main-window.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-main-window.Tpo -c -o unity_greeter_test-main-window.obj `if test -f '../src/main-window.c'; then $(CYGPATH_W) '../src/main-window.c'; else $(CYGPATH_W) '$(srcdir)/../src/main-window.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-main-window.Tpo $(DEPDIR)/unity_greeter_test-main-window.Po -# $(AM_V_CC)source='../src/main-window.c' object='unity_greeter_test-main-window.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-main-window.obj `if test -f '../src/main-window.c'; then $(CYGPATH_W) '../src/main-window.c'; else $(CYGPATH_W) '$(srcdir)/../src/main-window.c'; fi` - -unity_greeter_test-list-stack.o: ../src/list-stack.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-list-stack.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-list-stack.Tpo -c -o unity_greeter_test-list-stack.o `test -f '../src/list-stack.c' || echo '$(srcdir)/'`../src/list-stack.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-list-stack.Tpo $(DEPDIR)/unity_greeter_test-list-stack.Po -# $(AM_V_CC)source='../src/list-stack.c' object='unity_greeter_test-list-stack.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-list-stack.o `test -f '../src/list-stack.c' || echo '$(srcdir)/'`../src/list-stack.c - -unity_greeter_test-list-stack.obj: ../src/list-stack.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-list-stack.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-list-stack.Tpo -c -o unity_greeter_test-list-stack.obj `if test -f '../src/list-stack.c'; then $(CYGPATH_W) '../src/list-stack.c'; else $(CYGPATH_W) '$(srcdir)/../src/list-stack.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-list-stack.Tpo $(DEPDIR)/unity_greeter_test-list-stack.Po -# $(AM_V_CC)source='../src/list-stack.c' object='unity_greeter_test-list-stack.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-list-stack.obj `if test -f '../src/list-stack.c'; then $(CYGPATH_W) '../src/list-stack.c'; else $(CYGPATH_W) '$(srcdir)/../src/list-stack.c'; fi` - -unity_greeter_test-settings.o: ../src/settings.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-settings.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-settings.Tpo -c -o unity_greeter_test-settings.o `test -f '../src/settings.c' || echo '$(srcdir)/'`../src/settings.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-settings.Tpo $(DEPDIR)/unity_greeter_test-settings.Po -# $(AM_V_CC)source='../src/settings.c' object='unity_greeter_test-settings.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-settings.o `test -f '../src/settings.c' || echo '$(srcdir)/'`../src/settings.c - -unity_greeter_test-settings.obj: ../src/settings.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-settings.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-settings.Tpo -c -o unity_greeter_test-settings.obj `if test -f '../src/settings.c'; then $(CYGPATH_W) '../src/settings.c'; else $(CYGPATH_W) '$(srcdir)/../src/settings.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-settings.Tpo $(DEPDIR)/unity_greeter_test-settings.Po -# $(AM_V_CC)source='../src/settings.c' object='unity_greeter_test-settings.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-settings.obj `if test -f '../src/settings.c'; then $(CYGPATH_W) '../src/settings.c'; else $(CYGPATH_W) '$(srcdir)/../src/settings.c'; fi` - -unity_greeter_test-shutdown-dialog.o: ../src/shutdown-dialog.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-shutdown-dialog.o -MD -MP -MF $(DEPDIR)/unity_greeter_test-shutdown-dialog.Tpo -c -o unity_greeter_test-shutdown-dialog.o `test -f '../src/shutdown-dialog.c' || echo '$(srcdir)/'`../src/shutdown-dialog.c -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-shutdown-dialog.Tpo $(DEPDIR)/unity_greeter_test-shutdown-dialog.Po -# $(AM_V_CC)source='../src/shutdown-dialog.c' object='unity_greeter_test-shutdown-dialog.o' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-shutdown-dialog.o `test -f '../src/shutdown-dialog.c' || echo '$(srcdir)/'`../src/shutdown-dialog.c - -unity_greeter_test-shutdown-dialog.obj: ../src/shutdown-dialog.c -# $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -MT unity_greeter_test-shutdown-dialog.obj -MD -MP -MF $(DEPDIR)/unity_greeter_test-shutdown-dialog.Tpo -c -o unity_greeter_test-shutdown-dialog.obj `if test -f '../src/shutdown-dialog.c'; then $(CYGPATH_W) '../src/shutdown-dialog.c'; else $(CYGPATH_W) '$(srcdir)/../src/shutdown-dialog.c'; fi` -# $(AM_V_at)$(am__mv) $(DEPDIR)/unity_greeter_test-shutdown-dialog.Tpo $(DEPDIR)/unity_greeter_test-shutdown-dialog.Po -# $(AM_V_CC)source='../src/shutdown-dialog.c' object='unity_greeter_test-shutdown-dialog.obj' libtool=no -# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(unity_greeter_test_CFLAGS) $(CFLAGS) -c -o unity_greeter_test-shutdown-dialog.obj `if test -f '../src/shutdown-dialog.c'; then $(CYGPATH_W) '../src/shutdown-dialog.c'; else $(CYGPATH_W) '$(srcdir)/../src/shutdown-dialog.c'; fi` -$(srcdir)/test.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/test-list.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/test-main-window.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/unity-greeter.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/flat-button.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/toggle-box.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/user-list.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/greeter-list.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/remote-login-service.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/background.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/email-autocompleter.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/cairo-utils.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/animate-timer.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/fadable.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/fadable-box.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/dash-box.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/user-prompt-box.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/fading-label.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/cached-image.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/dash-entry.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/dash-button.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/prompt-box.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/session-list.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/main-window.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/list-stack.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/settings.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/../src/shutdown-dialog.c: $(srcdir)/unity_greeter_test_vala.stamp - @if test -f $@; then :; else rm -f $(srcdir)/unity_greeter_test_vala.stamp; fi - @if test -f $@; then :; else \ - $(MAKE) $(AM_MAKEFLAGS) $(srcdir)/unity_greeter_test_vala.stamp; \ - fi -$(srcdir)/unity_greeter_test_vala.stamp: test.vala test-list.vala test-main-window.vala unity-greeter.vala ../src/flat-button.vala ../src/toggle-box.vala ../src/user-list.vala ../src/greeter-list.vala ../src/remote-login-service.vala ../src/background.vala ../src/email-autocompleter.vala ../src/config.vapi ../src/fixes.vapi ../src/cairo-utils.vala ../src/animate-timer.vala ../src/ido.vapi ../src/fadable.vala ../src/fadable-box.vala ../src/dash-box.vala ../src/user-prompt-box.vala ../src/fading-label.vala ../src/cached-image.vala ../src/dash-entry.vala ../src/dash-button.vala ../src/prompt-box.vala ../src/session-list.vala ../src/main-window.vala ../src/list-stack.vala ../src/settings.vala ../src/shutdown-dialog.vala - $(AM_V_at)rm -f $@ && echo stamp > $@-t - $(AM_V_VALAC)$(am__cd) $(srcdir) && $(VALAC) $(unity_greeter_test_VALAFLAGS) $(VALAFLAGS) -C test.vala test-list.vala test-main-window.vala unity-greeter.vala ../src/flat-button.vala ../src/toggle-box.vala ../src/user-list.vala ../src/greeter-list.vala ../src/remote-login-service.vala ../src/background.vala ../src/email-autocompleter.vala ../src/config.vapi ../src/fixes.vapi ../src/cairo-utils.vala ../src/animate-timer.vala ../src/ido.vapi ../src/fadable.vala ../src/fadable-box.vala ../src/dash-box.vala ../src/user-prompt-box.vala ../src/fading-label.vala ../src/cached-image.vala ../src/dash-entry.vala ../src/dash-button.vala ../src/prompt-box.vala ../src/session-list.vala ../src/main-window.vala ../src/list-stack.vala ../src/settings.vala ../src/shutdown-dialog.vala - $(AM_V_at)mv -f $@-t $@ - -ID: $(am__tagged_files) - $(am__define_uniq_tagged_files); mkid -fID $$unique -tags: tags-am -TAGS: tags - -tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - set x; \ - here=`pwd`; \ - $(am__define_uniq_tagged_files); \ - shift; \ - if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - if test $$# -gt 0; then \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - "$$@" $$unique; \ - else \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$unique; \ - fi; \ - fi -ctags: ctags-am - -CTAGS: ctags -ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) - $(am__define_uniq_tagged_files); \ - test -z "$(CTAGS_ARGS)$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && $(am__cd) $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) "$$here" -cscopelist: cscopelist-am - -cscopelist-am: $(am__tagged_files) - list='$(am__tagged_files)'; \ - case "$(srcdir)" in \ - [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ - *) sdir=$(subdir)/$(srcdir) ;; \ - esac; \ - for i in $$list; do \ - if test -f "$$i"; then \ - echo "$(subdir)/$$i"; \ - else \ - echo "$$sdir/$$i"; \ - fi; \ - done >> $(top_builddir)/cscope.files - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am - $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) -check: check-am -all-am: Makefile -installdirs: -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." - -rm -f $(srcdir)/../src/animate-timer.c - -rm -f $(srcdir)/../src/background.c - -rm -f $(srcdir)/../src/cached-image.c - -rm -f $(srcdir)/../src/cairo-utils.c - -rm -f $(srcdir)/../src/dash-box.c - -rm -f $(srcdir)/../src/dash-button.c - -rm -f $(srcdir)/../src/dash-entry.c - -rm -f $(srcdir)/../src/email-autocompleter.c - -rm -f $(srcdir)/../src/fadable-box.c - -rm -f $(srcdir)/../src/fadable.c - -rm -f $(srcdir)/../src/fading-label.c - -rm -f $(srcdir)/../src/flat-button.c - -rm -f $(srcdir)/../src/greeter-list.c - -rm -f $(srcdir)/../src/list-stack.c - -rm -f $(srcdir)/../src/main-window.c - -rm -f $(srcdir)/../src/prompt-box.c - -rm -f $(srcdir)/../src/remote-login-service.c - -rm -f $(srcdir)/../src/session-list.c - -rm -f $(srcdir)/../src/settings.c - -rm -f $(srcdir)/../src/shutdown-dialog.c - -rm -f $(srcdir)/../src/toggle-box.c - -rm -f $(srcdir)/../src/user-list.c - -rm -f $(srcdir)/../src/user-prompt-box.c - -rm -f $(srcdir)/test-list.c - -rm -f $(srcdir)/test-main-window.c - -rm -f $(srcdir)/test.c - -rm -f $(srcdir)/unity-greeter.c - -rm -f $(srcdir)/unity_greeter_test_vala.stamp - -rm -f ../src/animate-timer.c - -rm -f ../src/background.c - -rm -f ../src/cached-image.c - -rm -f ../src/cairo-utils.c - -rm -f ../src/dash-box.c - -rm -f ../src/dash-button.c - -rm -f ../src/dash-entry.c - -rm -f ../src/email-autocompleter.c - -rm -f ../src/fadable-box.c - -rm -f ../src/fadable.c - -rm -f ../src/fading-label.c - -rm -f ../src/flat-button.c - -rm -f ../src/greeter-list.c - -rm -f ../src/list-stack.c - -rm -f ../src/main-window.c - -rm -f ../src/prompt-box.c - -rm -f ../src/remote-login-service.c - -rm -f ../src/session-list.c - -rm -f ../src/settings.c - -rm -f ../src/shutdown-dialog.c - -rm -f ../src/toggle-box.c - -rm -f ../src/user-list.c - -rm -f ../src/user-prompt-box.c - -rm -f test-list.c - -rm -f test-main-window.c - -rm -f test.c - -rm -f unity-greeter.c -clean: clean-am - -clean-am: clean-checkPROGRAMS clean-generic mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: - -.MAKE: check-am install-am install-strip - -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ - clean-checkPROGRAMS clean-generic cscopelist-am ctags ctags-am \ - distclean distclean-compile distclean-generic distclean-tags \ - distdir dvi dvi-am html html-am info info-am install \ - install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am - -.PRECIOUS: Makefile - - -check: unity-greeter-test - UBUNTU_MENUPROXY=0 top_srcdir=$(top_srcdir) . xvfb-run -a ./unity-greeter-test - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: