Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
84915157
Commit
84915157
authored
Jul 01, 2011
by
Markus Kauppila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bunch of Makefile.am files.
parent
4d41c606
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
77 additions
and
16 deletions
+77
-16
SDL_test.h
test/test-automation/SDL_test.h
+10
-0
config.guess
test/test-automation/build-scripts/config.guess
+5
-4
config.sub
test/test-automation/build-scripts/config.sub
+14
-5
plain_logger.c
test/test-automation/plain_logger.c
+2
-2
Makefile.am
test/test-automation/testdummy/Makefile.am
+1
-1
Makefile.am
test/test-automation/testplatform/Makefile.am
+1
-1
Makefile.in
test/test-automation/testplatform/Makefile.in
+43
-2
Makefile.am
test/test-automation/testrect/Makefile.am
+1
-1
No files found.
test/test-automation/SDL_test.h
View file @
84915157
...
@@ -85,4 +85,14 @@ void AssertEquals(Uint32 expected, Uint32 actual, char *message, ...);
...
@@ -85,4 +85,14 @@ void AssertEquals(Uint32 expected, Uint32 actual, char *message, ...);
*/
*/
void
AssertTrue
(
int
condition
,
char
*
message
,
...);
void
AssertTrue
(
int
condition
,
char
*
message
,
...);
/*!
\todo add markup
*/
void
AssertFail
(
char
*
message
,
...);
/*!
\todo add markup
*/
void
AssertPass
(
char
*
message
,
...);
#endif
#endif
test/test-automation/build-scripts/config.guess
View file @
84915157
#! /bin/sh
#! /bin/sh
# Attempt to guess a canonical system name.
# Attempt to guess a canonical system name.
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
, 2010
# Free Software Foundation, Inc.
# Free Software Foundation, Inc.
timestamp
=
'2009-1
1-2
0'
timestamp
=
'2009-1
2-3
0'
# This file is free software; you can redistribute it and/or modify it
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# under the terms of the GNU General Public License as published by
...
@@ -56,8 +56,9 @@ version="\
...
@@ -56,8 +56,9 @@ version="\
GNU config.guess (
$timestamp
)
GNU config.guess (
$timestamp
)
Originally written by Per Bothner.
Originally written by Per Bothner.
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
...
...
test/test-automation/build-scripts/config.sub
View file @
84915157
#! /bin/sh
#! /bin/sh
# Configuration validation subroutine script.
# Configuration validation subroutine script.
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
, 2010
# Free Software Foundation, Inc.
# Free Software Foundation, Inc.
timestamp
=
'20
09-11-20
'
timestamp
=
'20
10-01-22
'
# This file is (in principle) common to ALL GNU software.
# This file is (in principle) common to ALL GNU software.
# The presence of a machine in this file suggests that SOME GNU software
# The presence of a machine in this file suggests that SOME GNU software
...
@@ -75,8 +75,9 @@ Report bugs and patches to <config-patches@gnu.org>."
...
@@ -75,8 +75,9 @@ Report bugs and patches to <config-patches@gnu.org>."
version
=
"
\
version
=
"
\
GNU config.sub (
$timestamp
)
GNU config.sub (
$timestamp
)
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
...
@@ -380,7 +381,8 @@ case $basic_machine in
...
@@ -380,7 +381,8 @@ case $basic_machine in
|
sparclite-
*
\
|
sparclite-
*
\
|
sparcv8-
*
|
sparcv9-
*
|
sparcv9b-
*
|
sparcv9v-
*
|
strongarm-
*
|
sv1-
*
|
sx?-
*
\
|
sparcv8-
*
|
sparcv9-
*
|
sparcv9b-
*
|
sparcv9v-
*
|
strongarm-
*
|
sv1-
*
|
sx?-
*
\
|
tahoe-
*
|
thumb-
*
\
|
tahoe-
*
|
thumb-
*
\
|
tic30-
*
|
tic4x-
*
|
tic54x-
*
|
tic55x-
*
|
tic6x-
*
|
tic80-
*
|
tile-
*
\
|
tic30-
*
|
tic4x-
*
|
tic54x-
*
|
tic55x-
*
|
tic6x-
*
|
tic80-
*
\
|
tile-
*
|
tilegx-
*
\
|
tron-
*
\
|
tron-
*
\
|
ubicom32-
*
\
|
ubicom32-
*
\
|
v850-
*
|
v850e-
*
|
vax-
*
\
|
v850-
*
|
v850e-
*
|
vax-
*
\
...
@@ -1085,6 +1087,11 @@ case $basic_machine in
...
@@ -1085,6 +1087,11 @@ case $basic_machine in
basic_machine
=
tic6x-unknown
basic_machine
=
tic6x-unknown
os
=
-coff
os
=
-coff
;;
;;
# This must be matched before tile*.
tilegx
*
)
basic_machine
=
tilegx-unknown
os
=
-linux-gnu
;;
tile
*
)
tile
*
)
basic_machine
=
tile-unknown
basic_machine
=
tile-unknown
os
=
-linux-gnu
os
=
-linux-gnu
...
@@ -1435,6 +1442,8 @@ case $os in
...
@@ -1435,6 +1442,8 @@ case $os in
-dicos
*
)
-dicos
*
)
os
=
-dicos
os
=
-dicos
;;
;;
-nacl
*
)
;;
-none
)
-none
)
;;
;;
*
)
*
)
...
...
test/test-automation/plain_logger.c
View file @
84915157
...
@@ -78,9 +78,9 @@ PlainTestEnded(const char *testName, const char *suiteName,
...
@@ -78,9 +78,9 @@ PlainTestEnded(const char *testName, const char *suiteName,
{
{
if
(
testResult
)
{
if
(
testResult
)
{
if
(
testResult
==
2
)
{
if
(
testResult
==
2
)
{
Output
(
"%s: failed -> no assert"
);
Output
(
"%s: failed -> no assert"
,
testName
);
}
else
{
}
else
{
Output
(
"%s: failed"
);
Output
(
"%s: failed"
,
testName
);
}
}
}
else
{
}
else
{
Output
(
"%s: ok"
,
testName
);
Output
(
"%s: ok"
,
testName
);
...
...
test/test-automation/testdummy/Makefile.am
View file @
84915157
lib_LTLIBRARIES
=
libtestdummy.la
lib_LTLIBRARIES
=
libtestdummy.la
libtestdummy_la_SOURCES
=
testdummy.c ../SDL_test.c
libtestdummy_la_SOURCES
=
testdummy.c ../SDL_test.c
../logger.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestdummy_la_CLAGS
=
-fPIC
-g
libtestdummy_la_CLAGS
=
-fPIC
-g
libtestdummy_la_LDFLAGS
=
`
sdl-config
--libs
`
libtestdummy_la_LDFLAGS
=
`
sdl-config
--libs
`
...
...
test/test-automation/testplatform/Makefile.am
View file @
84915157
lib_LTLIBRARIES
=
libtestplatform.la
lib_LTLIBRARIES
=
libtestplatform.la
libtestplatform_la_SOURCES
=
testplatform.c ../SDL_test.c
libtestplatform_la_SOURCES
=
testplatform.c ../SDL_test.c
../logger.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestplatform_la_CLAGS
=
-fPIC
-g
libtestplatform_la_CLAGS
=
-fPIC
-g
libtestplatform_la_LDFLAGS
=
`
sdl-config
--libs
`
libtestplatform_la_LDFLAGS
=
`
sdl-config
--libs
`
...
...
test/test-automation/testplatform/Makefile.in
View file @
84915157
...
@@ -73,7 +73,8 @@ am__base_list = \
...
@@ -73,7 +73,8 @@ am__base_list = \
am__installdirs
=
"
$(DESTDIR)$(libdir)
"
am__installdirs
=
"
$(DESTDIR)$(libdir)
"
LTLIBRARIES
=
$(lib_LTLIBRARIES)
LTLIBRARIES
=
$(lib_LTLIBRARIES)
libtestplatform_la_LIBADD
=
libtestplatform_la_LIBADD
=
am_libtestplatform_la_OBJECTS
=
testplatform.lo SDL_test.lo
am_libtestplatform_la_OBJECTS
=
testplatform.lo SDL_test.lo logger.lo
\
logger_helpers.lo plain_logger.lo xml_logger.lo xml.lo
libtestplatform_la_OBJECTS
=
$(am_libtestplatform_la_OBJECTS)
libtestplatform_la_OBJECTS
=
$(am_libtestplatform_la_OBJECTS)
libtestplatform_la_LINK
=
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
\
libtestplatform_la_LINK
=
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
\
$(LIBTOOLFLAGS)
--mode
=
link
$(CCLD)
$(AM_CFLAGS)
$(CFLAGS)
\
$(LIBTOOLFLAGS)
--mode
=
link
$(CCLD)
$(AM_CFLAGS)
$(CFLAGS)
\
...
@@ -208,7 +209,7 @@ top_build_prefix = @top_build_prefix@
...
@@ -208,7 +209,7 @@ top_build_prefix = @top_build_prefix@
top_builddir
=
@top_builddir@
top_builddir
=
@top_builddir@
top_srcdir
=
@top_srcdir@
top_srcdir
=
@top_srcdir@
lib_LTLIBRARIES
=
libtestplatform.la
lib_LTLIBRARIES
=
libtestplatform.la
libtestplatform_la_SOURCES
=
testplatform.c ../SDL_test.c
libtestplatform_la_SOURCES
=
testplatform.c ../SDL_test.c
../logger.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestplatform_la_CLAGS
=
-fPIC
-g
libtestplatform_la_CLAGS
=
-fPIC
-g
libtestplatform_la_LDFLAGS
=
`
sdl-config
--libs
`
libtestplatform_la_LDFLAGS
=
`
sdl-config
--libs
`
all
:
all-am
all
:
all-am
...
@@ -286,7 +287,12 @@ distclean-compile:
...
@@ -286,7 +287,12 @@ distclean-compile:
-
rm
-f
*
.tab.c
-
rm
-f
*
.tab.c
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/SDL_test.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/SDL_test.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/logger.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/logger_helpers.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/plain_logger.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/testplatform.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/testplatform.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/xml.Plo@am__quote@
@AMDEP_TRUE@@am__include@
@am__quote@./$(DEPDIR)/xml_logger.Plo@am__quote@
.c.o
:
.c.o
:
@am__fastdepCC_TRUE@
$(COMPILE)
-MT
$@
-MD
-MP
-MF
$(DEPDIR)/$*.Tpo
-c
-o
$@
$<
@am__fastdepCC_TRUE@
$(COMPILE)
-MT
$@
-MD
-MP
-MF
$(DEPDIR)/$*.Tpo
-c
-o
$@
$<
...
@@ -316,6 +322,41 @@ SDL_test.lo: ../SDL_test.c
...
@@ -316,6 +322,41 @@ SDL_test.lo: ../SDL_test.c
@AMDEP_TRUE@@am__fastdepCC_FALSE@
DEPDIR
=
$(DEPDIR)
$(CCDEPMODE)
$(depcomp)
@AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@
DEPDIR
=
$(DEPDIR)
$(CCDEPMODE)
$(depcomp)
@AMDEPBACKSLASH@
@am__fastdepCC_FALSE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-c
-o
SDL_test.lo
`
test
-f
'../SDL_test.c'
||
echo
'
$(srcdir)
/'
`
../SDL_test.c
@am__fastdepCC_FALSE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-c
-o
SDL_test.lo
`
test
-f
'../SDL_test.c'
||
echo
'
$(srcdir)
/'
`
../SDL_test.c
logger.lo
:
../logger.c
@am__fastdepCC_TRUE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-MT
logger.lo
-MD
-MP
-MF
$(DEPDIR)
/logger.Tpo
-c
-o
logger.lo
`
test
-f
'../logger.c'
||
echo
'
$(srcdir)
/'
`
../logger.c
@am__fastdepCC_TRUE@
$(am__mv)
$(DEPDIR)/logger.Tpo
$(DEPDIR)/logger.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@
source
=
'../logger.c'
object
=
'logger.lo'
libtool
=
yes
@AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@
DEPDIR
=
$(DEPDIR)
$(CCDEPMODE)
$(depcomp)
@AMDEPBACKSLASH@
@am__fastdepCC_FALSE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-c
-o
logger.lo
`
test
-f
'../logger.c'
||
echo
'
$(srcdir)
/'
`
../logger.c
logger_helpers.lo
:
../logger_helpers.c
@am__fastdepCC_TRUE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-MT
logger_helpers.lo
-MD
-MP
-MF
$(DEPDIR)
/logger_helpers.Tpo
-c
-o
logger_helpers.lo
`
test
-f
'../logger_helpers.c'
||
echo
'
$(srcdir)
/'
`
../logger_helpers.c
@am__fastdepCC_TRUE@
$(am__mv)
$(DEPDIR)/logger_helpers.Tpo
$(DEPDIR)/logger_helpers.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@
source
=
'../logger_helpers.c'
object
=
'logger_helpers.lo'
libtool
=
yes
@AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@
DEPDIR
=
$(DEPDIR)
$(CCDEPMODE)
$(depcomp)
@AMDEPBACKSLASH@
@am__fastdepCC_FALSE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-c
-o
logger_helpers.lo
`
test
-f
'../logger_helpers.c'
||
echo
'
$(srcdir)
/'
`
../logger_helpers.c
plain_logger.lo
:
../plain_logger.c
@am__fastdepCC_TRUE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-MT
plain_logger.lo
-MD
-MP
-MF
$(DEPDIR)
/plain_logger.Tpo
-c
-o
plain_logger.lo
`
test
-f
'../plain_logger.c'
||
echo
'
$(srcdir)
/'
`
../plain_logger.c
@am__fastdepCC_TRUE@
$(am__mv)
$(DEPDIR)/plain_logger.Tpo
$(DEPDIR)/plain_logger.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@
source
=
'../plain_logger.c'
object
=
'plain_logger.lo'
libtool
=
yes
@AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@
DEPDIR
=
$(DEPDIR)
$(CCDEPMODE)
$(depcomp)
@AMDEPBACKSLASH@
@am__fastdepCC_FALSE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-c
-o
plain_logger.lo
`
test
-f
'../plain_logger.c'
||
echo
'
$(srcdir)
/'
`
../plain_logger.c
xml_logger.lo
:
../xml_logger.c
@am__fastdepCC_TRUE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-MT
xml_logger.lo
-MD
-MP
-MF
$(DEPDIR)
/xml_logger.Tpo
-c
-o
xml_logger.lo
`
test
-f
'../xml_logger.c'
||
echo
'
$(srcdir)
/'
`
../xml_logger.c
@am__fastdepCC_TRUE@
$(am__mv)
$(DEPDIR)/xml_logger.Tpo
$(DEPDIR)/xml_logger.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@
source
=
'../xml_logger.c'
object
=
'xml_logger.lo'
libtool
=
yes
@AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@
DEPDIR
=
$(DEPDIR)
$(CCDEPMODE)
$(depcomp)
@AMDEPBACKSLASH@
@am__fastdepCC_FALSE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-c
-o
xml_logger.lo
`
test
-f
'../xml_logger.c'
||
echo
'
$(srcdir)
/'
`
../xml_logger.c
xml.lo
:
../xml.c
@am__fastdepCC_TRUE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-MT
xml.lo
-MD
-MP
-MF
$(DEPDIR)
/xml.Tpo
-c
-o
xml.lo
`
test
-f
'../xml.c'
||
echo
'
$(srcdir)
/'
`
../xml.c
@am__fastdepCC_TRUE@
$(am__mv)
$(DEPDIR)/xml.Tpo
$(DEPDIR)/xml.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@
source
=
'../xml.c'
object
=
'xml.lo'
libtool
=
yes
@AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@
DEPDIR
=
$(DEPDIR)
$(CCDEPMODE)
$(depcomp)
@AMDEPBACKSLASH@
@am__fastdepCC_FALSE@
$(LIBTOOL)
--tag
=
CC
$(AM_LIBTOOLFLAGS)
$(LIBTOOLFLAGS)
--mode
=
compile
$(CC)
$(DEFS)
$(DEFAULT_INCLUDES)
$(INCLUDES)
$(AM_CPPFLAGS)
$(CPPFLAGS)
$(AM_CFLAGS)
$(CFLAGS)
-c
-o
xml.lo
`
test
-f
'../xml.c'
||
echo
'
$(srcdir)
/'
`
../xml.c
mostlyclean-libtool
:
mostlyclean-libtool
:
-
rm
-f
*
.lo
-
rm
-f
*
.lo
...
...
test/test-automation/testrect/Makefile.am
View file @
84915157
lib_LTLIBRARIES
=
libtestrect.la
lib_LTLIBRARIES
=
libtestrect.la
libtestrect_la_SOURCES
=
testrect.c ../SDL_test.c
libtestrect_la_SOURCES
=
testrect.c ../SDL_test.c
../logger.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestrect_la_CLAGS
=
-fPIC
-g
libtestrect_la_CLAGS
=
-fPIC
-g
libtestrect_la_LDFLAGS
=
`
sdl-config
--libs
`
libtestrect_la_LDFLAGS
=
`
sdl-config
--libs
`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment