mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-iuh.git
synced 2025-11-02 05:03:24 +00:00
Do all remaining changes necessary for a working build. Add Makefile.am files in include/... subdirs. Remove noinst_HEADERS directives from src/*/Makefile.am, but keep the headers list to feed to move-asn1-header-files.sh. Adjust all #includes in src/*_common.h and elsewhere. In hnbap_common.h, separate the ASN.1 "primitive" headers from the others, and include them without a subdir path, as before.
15 lines
319 B
Makefile
15 lines
319 B
Makefile
AUTOMAKE_OPTIONS = foreign dist-bzip2
|
|
|
|
SUBDIRS = src include
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libosmo-ranap.pc
|
|
|
|
EXTRA_DIST = asn1 .version
|
|
|
|
BUILT_SOURCES = $(top_srcdir)/.version
|
|
$(top_srcdir)/.version:
|
|
echo $(VERSION) > $@-t && mv $@-t $@
|
|
dist-hook:
|
|
echo $(VERSION) > $(distdir)/.tarball-version
|