diff options
author | Sam Lantinga <slouken@libsdl.org> | 2017-11-17 10:54:46 -0800 |
---|---|---|
committer | Sam Lantinga <slouken@libsdl.org> | 2017-11-17 10:54:46 -0800 |
commit | d20102e9e1c12130ce33edea85043c141015fe08 (patch) | |
tree | 81ad4b3624a6f55215935027aa0e6a93c7928a4d /test | |
parent | 44087f9b2f0c3bae58a80fbd23cddaa8536ab5aa (diff) |
Fixed building YUV test programs (thanks Ozkan!)
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index c625622aa2..bc9c24ab92 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -219,7 +219,7 @@ endif endif endif -testoverlay2$(EXE): $(srcdir)/testoverlay2.c +testoverlay2$(EXE): $(srcdir)/testoverlay2.c $(srcdir)/testyuv_cvt.c $(CC) -o $@ $^ $(CFLAGS) $(LIBS) testplatform$(EXE): $(srcdir)/testplatform.c @@ -267,7 +267,7 @@ testviewport$(EXE): $(srcdir)/testviewport.c testwm2$(EXE): $(srcdir)/testwm2.c $(CC) -o $@ $^ $(CFLAGS) $(LIBS) -testyuv$(EXE): $(srcdir)/testyuv.c +testyuv$(EXE): $(srcdir)/testyuv.c $(srcdir)/testyuv_cvt.c $(CC) -o $@ $^ $(CFLAGS) $(LIBS) torturethread$(EXE): $(srcdir)/torturethread.c |