ac6f437317
* Set udev installation directory to $sysconfdir/udev/rules.d * Add definitions to xpp/Makefile.am and remove them from xpp/Makefile.legacy * TODO: add "--with-udev-rulesdir=" for packagers (/lib/udev/rules.d) Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
41 lines
858 B
Makefile
41 lines
858 B
Makefile
PEDANTIC = -ansi -pedantic -std=c99
|
|
|
|
INSTALL = install
|
|
INSTALL_DATA = install -m 644
|
|
|
|
#
|
|
# Ugly hack to find kernel directories before/after the split
|
|
# to kernel/user-space.
|
|
#
|
|
# These variables should be passed to us. But until then...
|
|
#
|
|
DAHDI_TOOLSDIR ?= ..
|
|
DAHDI_KERNELDIR =
|
|
|
|
-include $(DAHDI_TOOLSDIR)/makeopts
|
|
|
|
INSTALL_DATA = $(INSTALL) -m 644
|
|
|
|
# In 1.4 those are provided by autoconf through makeopts
|
|
prefix ?= /usr
|
|
datadir ?= $(prefix)/share
|
|
sysconfdir ?= $(prefix)/etc
|
|
INSTALL ?= install
|
|
|
|
INSTALL_DATA = $(INSTALL) -m 644
|
|
|
|
DATADIR = $(datadir)/dahdi
|
|
|
|
# Variables that should be defined above, but need sane defaults:
|
|
# FIXME: Are those values really sane?
|
|
HOSTCC ?= $(CC)
|
|
|
|
all:
|
|
|
|
install: all
|
|
$(INSTALL) -d $(DESTDIR)$(DATADIR)
|
|
$(INSTALL) xpp_fxloader astribank_hook $(DESTDIR)$(DATADIR)/
|
|
$(INSTALL) waitfor_xpds $(DESTDIR)$(DATADIR)/
|
|
|
|
clean:
|