yate/share/Makefile.in
paulc b3946d3d3d Reverted to hardcoded relative paths because top_builddir is not portable
across autoconf versions.


git-svn-id: http://yate.null.ro/svn/yate/trunk@1484 acf43c95-373e-0410-b603-e72c3f656dc1
2007-11-23 14:14:54 +00:00

30 lines
651 B
Makefile

# Makefile
# This file holds the make rules for the Telephony Engine modules
# override DESTDIR at install time to prefix the install directory
DESTDIR :=
SUBDIRS := help skins scripts
prefix = @prefix@
exec_prefix = @exec_prefix@
datarootdir = @datarootdir@
datadir = @datadir@
shrdir = $(datadir)/yate
# include optional local make rules
-include YateLocal.mak
PHONY: all clean install uninstall
all clean install uninstall:
$(if $(SUBDIRS),\
@for i in $(SUBDIRS) ; do \
if test -f ./$$i/Makefile ; then \
$(MAKE) -C ./$$i $@ || exit 1;\
fi; \
done \
)
Makefile: @srcdir@/Makefile.in ../config.status
cd .. && ./config.status