mirror of
https://git.code.sf.net/p/fldigi/fldigi
synced 2026-08-13 17:47:54 -04:00
* Enable less verbose build output by default by calling the AM_SILENT_RULES macro if available (automake >= 1.11). Verbose output can be enabled by passing --disable-silent-rules to configure, or V=1 to make. * Add silent function for some custom Makefile rules
28 lines
432 B
Makefile
28 lines
432 B
Makefile
ACLOCAL_AMFLAGS = -I m4 -I m4/intl
|
|
# AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
SUBDIRS = po doc src
|
|
|
|
if HAVE_FLUID
|
|
flgen:
|
|
@(cd src && $(MAKE) $(AM_MAKEFLAGS) $@)
|
|
endif
|
|
|
|
if DARWIN
|
|
appbundle:
|
|
@(cd src && $(MAKE) $(AM_MAKEFLAGS) $@)
|
|
endif
|
|
|
|
if HAVE_NSIS
|
|
nsisinst:
|
|
@(cd src && $(MAKE) $(AM_MAKEFLAGS) $@)
|
|
endif
|
|
|
|
if WANT_FLDIGI
|
|
if ENABLE_HAMLIB
|
|
hamlib-static:
|
|
@(cd src && $(MAKE) $(AM_MAKEFLAGS) $@)
|
|
endif
|
|
endif
|
|
|
|
EXTRA_DIST = build-aux/config.rpath
|