Mac and Linux SDL2 binary snapshots
Edward Rudd
2019-04-09 9cd2e9ec8fc0127393dfce9c0359d500c8c238be
source/test/Makefile.in
@@ -9,19 +9,23 @@
TARGETS = \
   checkkeys$(EXE) \
   controllermap$(EXE) \
   loopwave$(EXE) \
   loopwavequeue$(EXE) \
   testatomic$(EXE) \
   testaudioinfo$(EXE) \
   testaudiocapture$(EXE) \
   testaudiohotplug$(EXE) \
   testaudioinfo$(EXE) \
   testautomation$(EXE) \
   testbounds$(EXE) \
   testcustomcursor$(EXE) \
   testdisplayinfo$(EXE) \
   testdraw2$(EXE) \
   testdrawchessboard$(EXE) \
   testdropfile$(EXE) \
   testerror$(EXE) \
   testfile$(EXE) \
   testfilesystem$(EXE) \
   testgamecontroller$(EXE) \
   testgesture$(EXE) \
   testgl2$(EXE) \
@@ -29,45 +33,44 @@
   testgles2$(EXE) \
   testhaptic$(EXE) \
   testhittesting$(EXE) \
   testrumble$(EXE) \
   testhotplug$(EXE) \
   testthread$(EXE) \
   testiconv$(EXE) \
   testime$(EXE) \
   testintersections$(EXE) \
   testrelative$(EXE) \
   testjoystick$(EXE) \
   testkeys$(EXE) \
   testloadso$(EXE) \
   testlock$(EXE) \
   testmessage$(EXE) \
   testmultiaudio$(EXE) \
   testaudiohotplug$(EXE) \
   testnative$(EXE) \
   testoverlay2$(EXE) \
   testplatform$(EXE) \
   testpower$(EXE) \
   testfilesystem$(EXE) \
   testqsort$(EXE) \
   testrelative$(EXE) \
   testrendercopyex$(EXE) \
   testrendertarget$(EXE) \
   testresample$(EXE) \
   testrumble$(EXE) \
   testscale$(EXE) \
   testsem$(EXE) \
   testsensor$(EXE) \
   testshader$(EXE) \
   testshape$(EXE) \
   testsprite2$(EXE) \
   testspriteminimal$(EXE) \
   teststreaming$(EXE) \
   testthread$(EXE) \
   testtimer$(EXE) \
   testver$(EXE) \
   testviewport$(EXE) \
   testvulkan$(EXE) \
   testwm2$(EXE) \
   testyuv$(EXE) \
   torturethread$(EXE) \
   testrendercopyex$(EXE) \
   testmessage$(EXE) \
   testdisplayinfo$(EXE) \
   testqsort$(EXE) \
   controllermap$(EXE) \
   
all: Makefile $(TARGETS)
all: Makefile $(TARGETS) copydatafiles
Makefile: $(srcdir)/Makefile.in
   $(SHELL) config.status $@
@@ -217,7 +220,7 @@
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
@@ -236,6 +239,9 @@
   $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testsem$(EXE): $(srcdir)/testsem.c
   $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testsensor$(EXE): $(srcdir)/testsensor.c
   $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testshader$(EXE): $(srcdir)/testshader.c
@@ -265,6 +271,9 @@
testwm2$(EXE): $(srcdir)/testwm2.c
   $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testyuv$(EXE): $(srcdir)/testyuv.c $(srcdir)/testyuv_cvt.c
   $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
torturethread$(EXE): $(srcdir)/torturethread.c
   $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
@@ -289,6 +298,9 @@
controllermap$(EXE): $(srcdir)/controllermap.c
   $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
testvulkan$(EXE): $(srcdir)/testvulkan.c
   $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
clean:
   rm -f $(TARGETS)
@@ -297,3 +309,26 @@
   rm -f Makefile
   rm -f config.status config.cache config.log
   rm -rf $(srcdir)/autom4te*
%.bmp: $(srcdir)/%.bmp
   cp $< $@
%.wav: $(srcdir)/%.wav
   cp $< $@
%.dat: $(srcdir)/%.dat
   cp $< $@
copydatafiles: copybmpfiles copywavfiles copydatfiles
.PHONY : copydatafiles
copybmpfiles: $(foreach bmp,$(wildcard $(srcdir)/*.bmp),$(notdir $(bmp)))
.PHONY : copybmpfiles
copywavfiles: $(foreach wav,$(wildcard $(srcdir)/*.wav),$(notdir $(wav)))
.PHONY : copywavfiles
copydatfiles: $(foreach dat,$(wildcard $(srcdir)/*.dat),$(notdir $(dat)))
.PHONY : copydatfiles