mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
58 lines
1.1 KiB
Makefile
58 lines
1.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
aclocaldir = $(datadir)/aclocal
|
|
aclocal_DATA = hamlib.m4
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = hamlib.pc
|
|
|
|
EXTRA_DIST = \
|
|
README.betatester \
|
|
LICENSE \
|
|
PLAN \
|
|
README.developer \
|
|
README.freqranges \
|
|
README.macos \
|
|
README.md \
|
|
README.multicast \
|
|
ReleaseNotes_4.7.md \
|
|
ReleaseNotes_5.0.md \
|
|
hamlib.m4 \
|
|
hamlib.pc.in
|
|
|
|
doc_DATA = ChangeLog COPYING COPYING.LIB LICENSE \
|
|
README.md README.betatester README.developer
|
|
|
|
SUBDIRS = macros include lib security \
|
|
$(BACKEND_LIST) \
|
|
$(RIG_BACKEND_LIST) \
|
|
$(ROT_BACKEND_LIST) \
|
|
$(AMP_BACKEND_LIST) \
|
|
src \
|
|
$(BINDINGS) \
|
|
tests doc
|
|
|
|
## Static list of distributed directories.
|
|
DIST_SUBDIRS = \
|
|
$(AMP_BACKEND_LIST) \
|
|
$(BACKEND_LIST) \
|
|
$(RIG_BACKEND_LIST) \
|
|
$(RIG_BACKEND_OPTIONAL_LIST) \
|
|
$(ROT_BACKEND_LIST) \
|
|
$(ROT_BACKEND_OPTIONAL_LIST) \
|
|
bindings \
|
|
c++ \
|
|
doc \
|
|
include \
|
|
lib \
|
|
macros \
|
|
scripts \
|
|
security \
|
|
simulators \
|
|
src \
|
|
tests
|
|
|
|
# Install any third party macros into our tree for distribution
|
|
ACLOCAL_AMFLAGS = -I macros --install
|
|
|
|
AM_CFLAGS=-D_TIME_BITS=64 -Winitializer-overrides
|