mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-01-31 00:09:19 +01:00
test: Makefile should copy .dat files for testoverlay2.
This commit is contained in:
parent
3634e563c4
commit
aae29c9ebd
@ -317,7 +317,10 @@ distclean: clean
|
|||||||
%.wav: $(srcdir)/%.wav
|
%.wav: $(srcdir)/%.wav
|
||||||
cp $< $@
|
cp $< $@
|
||||||
|
|
||||||
copydatafiles: copybmpfiles copywavfiles
|
%.dat: $(srcdir)/%.dat
|
||||||
|
cp $< $@
|
||||||
|
|
||||||
|
copydatafiles: copybmpfiles copywavfiles copydatfiles
|
||||||
.PHONY : copydatafiles
|
.PHONY : copydatafiles
|
||||||
|
|
||||||
copybmpfiles: $(foreach bmp,$(wildcard $(srcdir)/*.bmp),$(notdir $(bmp)))
|
copybmpfiles: $(foreach bmp,$(wildcard $(srcdir)/*.bmp),$(notdir $(bmp)))
|
||||||
@ -326,3 +329,6 @@ copybmpfiles: $(foreach bmp,$(wildcard $(srcdir)/*.bmp),$(notdir $(bmp)))
|
|||||||
copywavfiles: $(foreach wav,$(wildcard $(srcdir)/*.wav),$(notdir $(wav)))
|
copywavfiles: $(foreach wav,$(wildcard $(srcdir)/*.wav),$(notdir $(wav)))
|
||||||
.PHONY : copywavfiles
|
.PHONY : copywavfiles
|
||||||
|
|
||||||
|
copydatfiles: $(foreach dat,$(wildcard $(srcdir)/*.dat),$(notdir $(dat)))
|
||||||
|
.PHONY : copydatfiles
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user