tests/Makefile.am: Switch away from GNU make rules

Avoid `'%'-style pattern rules are a GNU make extension` warnings.
This commit is contained in:
Erik de Castro Lopo 2017-04-16 19:56:20 +10:00
parent df7e76fbe6
commit ff26310437

View File

@ -190,8 +190,16 @@ scale_clip_test_LDADD = $(top_builddir)/src/libsndfile.la
#===============================================================================
# Autogen generated sources.
%.c : %.def %.tpl
SUFFIXES = .def .tpl
.def.c:
autogen --writable $<
%.h : %.def %.tpl
.tpl.c:
autogen --writable $<
.def.h:
autogen --writable $<
.tpl.h:
autogen --writable $<