* plouj/second-tp-attempt: (68 commits) partially fix a pkg-config problem with scons on Fedora12 fix comilation by using an existing TEST macro more formatting fixes to put spaces before function/macro call opening brackets add a stronger REQUIRE check ignore RESOURCE_ANNOUNCE in tests fix the code by re-merging some of cehteh's changes remove redundant info from TRACE match the filename in the header comment add a thread state check and remove an old comment python-2.6 fix: loading the icon_rener.py script (Ticket #222) Use a fully qualified name for PlacementMO in PlacementIndex fix compilation errors die regardless of what type of failure pthread_create() encounters mark thread as worker remote unnecessary calls to llist_unlink() insert is enough continuation of working_list introduction begin adding a second list to store working threads merge ECHO with TRACE don't expect any more output from the basic test fix compilation ... Conflicts: src/tool/Makefile.am tests/Makefile.am
31 lines
1.3 KiB
Makefile
31 lines
1.3 KiB
Makefile
# Copyright (C) Lumiera.org
|
|
# 2008 Christian Thaeter <ct@pipapo.org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
lumitool_srcdir = $(top_srcdir)/src/tool
|
|
|
|
noinst_PROGRAMS += luidgen
|
|
|
|
luidgen_CFLAGS = $(CFLAGS) $(LUMIERA_TOOL_CFLAGS) -std=gnu99 -Wall -Werror
|
|
luidgen_CPPFLAGS = -I$(top_srcdir)/src/
|
|
luidgen_LDADD = liblumiera.la $(LUMIERA_TOOL_LIBS)
|
|
luidgen_SOURCES = $(lumitool_srcdir)/luidgen.c
|
|
|
|
|
|
noinst_PROGRAMS += rsvg-convert
|
|
rsvg_convert_CPPFLAGS = $(AM_CPPFLAGS) $(LUMIERA_TOOL_CFLAGS) -std=gnu99 -Wall -Werror
|
|
rsvg_convert_LDADD = $(LUMIERA_TOOL_LIBS)
|
|
rsvg_convert_SOURCES = $(lumitool_srcdir)/rsvg-convert.c
|