mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
eefa89e72e
Now that the tools directories aren't entered when those tools aren't being built, there's no reason to use AM_CONDITIONAL in there.
18 lines
314 B
Makefile
18 lines
314 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
WAV_LIBS=@WAV_LIBS@
|
|
WAV_DEPS=@WAV_DEPS@
|
|
WAV_INCS=@WAV_INCS@
|
|
|
|
INCLUDES= -I$(top_srcdir)/include $(WAV_INCS)
|
|
|
|
bin_PROGRAMS= qfwavinfo
|
|
|
|
mans=qfwavinfo.1
|
|
man_MANS= #$(mans)
|
|
|
|
qfwavinfo_SOURCES= qfwavinfo.c
|
|
qfwavinfo_LDADD= $(WAV_LIBS)
|
|
qfwavinfo_DEPENDENCIES= $(WAV_DEPS)
|
|
|
|
EXTRA_DIST=#$(mans)
|