Skip to content

Commit

Permalink
test: Makefile should copy .dat files for testoverlay2.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 2, 2018
1 parent 3634e56 commit aae29c9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/Makefile.in
Expand Up @@ -317,7 +317,10 @@ distclean: clean
%.wav: $(srcdir)/%.wav
cp $< $@

copydatafiles: copybmpfiles copywavfiles
%.dat: $(srcdir)/%.dat
cp $< $@

copydatafiles: copybmpfiles copywavfiles copydatfiles
.PHONY : copydatafiles

copybmpfiles: $(foreach bmp,$(wildcard $(srcdir)/*.bmp),$(notdir $(bmp)))
Expand All @@ -326,3 +329,6 @@ copybmpfiles: $(foreach bmp,$(wildcard $(srcdir)/*.bmp),$(notdir $(bmp)))
copywavfiles: $(foreach wav,$(wildcard $(srcdir)/*.wav),$(notdir $(wav)))
.PHONY : copywavfiles

copydatfiles: $(foreach dat,$(wildcard $(srcdir)/*.dat),$(notdir $(dat)))
.PHONY : copydatfiles

0 comments on commit aae29c9

Please sign in to comment.