Osmocom Home NodeB Gateway, for attaching femtocells to the 3G CN (OsmoMSC, OsmoSGSN)
https://osmocom.org/projects/osmohnbgw
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
734 B
31 lines
734 B
1 year ago
|
OSMOCONF_FILES = \
|
||
|
osmo-hnbgw/osmo-hnbgw.cfg
|
||
|
|
||
|
osmoconfdir = $(sysconfdir)/osmocom
|
||
|
osmoconf_DATA = $(OSMOCONF_FILES)
|
||
|
|
||
|
EXTRA_DIST = $(OSMOCONF_FILES)
|
||
|
|
||
|
CFG_FILES = find $(srcdir) -name '*.cfg*' | sed -e 's,^$(srcdir),,'
|
||
|
|
||
|
dist-hook:
|
||
|
for f in $$($(CFG_FILES)); do \
|
||
|
j="$(distdir)/$$f" && \
|
||
|
mkdir -p "$$(dirname $$j)" && \
|
||
|
$(INSTALL_DATA) $(srcdir)/$$f $$j; \
|
||
|
done
|
||
|
|
||
|
install-data-hook:
|
||
|
for f in $$($(CFG_FILES)); do \
|
||
|
j="$(DESTDIR)$(docdir)/examples/$$f" && \
|
||
|
mkdir -p "$$(dirname $$j)" && \
|
||
|
$(INSTALL_DATA) $(srcdir)/$$f $$j; \
|
||
|
done
|
||
|
|
||
|
uninstall-hook:
|
||
|
@$(PRE_UNINSTALL)
|
||
|
for f in $$($(CFG_FILES)); do \
|
||
|
j="$(DESTDIR)$(docdir)/examples/$$f" && \
|
||
|
$(RM) $$j; \
|
||
|
done
|