gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash/cygnal/ACT test_support/Makefile.am unit_...


From: Eric Hughes
Subject: [Gnash-commit] gnash/cygnal/ACT test_support/Makefile.am unit_...
Date: Sun, 21 Oct 2007 19:22:56 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Eric Hughes <eh9>       07/10/21 19:22:56

Added files:
        cygnal/ACT/test_support: Makefile.am 
        cygnal/ACT/unit_tests: Makefile.am 

Log message:
        Neglected to add these two files with previous commit.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/cygnal/ACT/test_support/Makefile.am?cvsroot=gnash&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/gnash/cygnal/ACT/unit_tests/Makefile.am?cvsroot=gnash&rev=1.1

Patches:
Index: test_support/Makefile.am
===================================================================
RCS file: test_support/Makefile.am
diff -N test_support/Makefile.am
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ test_support/Makefile.am    21 Oct 2007 19:22:56 -0000      1.1
@@ -0,0 +1,53 @@
+# 
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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 3 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+#
+# $Id: Makefile.am,v 1.1 2007/10/21 19:22:56 eh9 Exp $
+
+#----------------------------------------
+# Makefile.am for Cygnal/ACT/test_support
+#----------------------------------------
+AM_CPPFLAGS = # -Wall
+
+## WARNING: make sure GLIB_LIBS appears first
+## See: http://lists.gnu.org/archive/html/gnash-dev/2006-07/msg00076.html
+AM_LDFLAGS = \
+       $(GLIB_LIBS) \
+       $(BOOST_LIBS)
+
+localedir = $(datadir)/locale
+
+INCLUDES = -I.. \
+       -I$(top_srcdir)/cygnal  \
+       -DLOCALEDIR=\"$(localedir)\" \
+       $(BOOST_CFLAGS)
+
+lib_LTLIBRARIES = libcygnal_act_testsupport.la
+libcygnal_act_testsupport_la_SOURCES= \
+       Listening_Actions.cpp \
+       Simple_Actions.cpp \
+       Supplied_Service.cpp
+
+noinst_HEADERS = \
+       Action_Tracing.hpp \
+       Listening_Actions.hpp \
+       Simple_Actions.hpp \
+       Supplied_Service.hpp
+
+# Rebuild with GCC 4.x Mudflap support
+mudflap:
+       @echo "Rebuilding with GCC Mudflap support"
+       $(MAKE) CXXFLAGS="$(CXXFLAGS) $(MUDFLAP_OPT)" LIBS="$(LIBS) 
$(MUDFLAP_LIB)"

Index: unit_tests/Makefile.am
===================================================================
RCS file: unit_tests/Makefile.am
diff -N unit_tests/Makefile.am
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ unit_tests/Makefile.am      21 Oct 2007 19:22:56 -0000      1.1
@@ -0,0 +1,64 @@
+# 
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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 3 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+#
+# $Id: Makefile.am,v 1.1 2007/10/21 19:22:56 eh9 Exp $
+
+#----------------------------------------
+# Makefile.am for Cygnal/ACT/unit_tests
+#----------------------------------------
+
+## WARNING: make sure GLIB_LIBS appears first
+## See: http://lists.gnu.org/archive/html/gnash-dev/2006-07/msg00076.html
+AM_LDFLAGS = \
+       $(GLIB_LIBS) \
+       $(BOOST_LIBS) \
+       -lboost_unit_test_framework-gcc34-mt
+
+localedir = $(datadir)/locale
+
+INCLUDES = -I.. \
+       -I$(top_srcdir)/cygnal  \
+       -DLOCALEDIR=\"$(localedir)\" \
+       $(BOOST_CFLAGS)
+
+noinst_PROGRAMS = cygnal_act_unittests
+
+cygnal_act_unittests_SOURCES = \
+       Test_ACT.cpp \
+       Test_Scheduler.cpp \
+       Test_Scheduling_Queue.cpp
+       
+cygnal_act_unittests_LDADD = \
+       ../test_support/libcygnal_act_testsupport.la \
+       ../libcygnal_act.la \
+       ../../unit_tests/libcygnal_test.la
+
+../test_support/libcygnal_act_testsupport.la :
+       make -C ../test_support libcygnal_act_testsupport.la
+       
+../libcygnal_act.la :
+       make -C .. libcygnal_act.la
+
+../../unit_tests/libcygnal_test.la :
+       make -C ../../unit_tests libcygnal_test.la
+
+noinst_HEADERS =
+
+# Rebuild with GCC 4.x Mudflap support
+mudflap:
+       @echo "Rebuilding with GCC Mudflap support"
+       $(MAKE) CXXFLAGS="$(CXXFLAGS) $(MUDFLAP_OPT)" LIBS="$(LIBS) 
$(MUDFLAP_LIB)"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]