mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-06 10:13:10 +00:00
31 lines
552 B
Makefile
31 lines
552 B
Makefile
# Makefile.am
|
|
|
|
ACLOCAL_AMFLAGS = -I config
|
|
|
|
LIBTOOL_DEPS = @LIBTOOL_DEPS@
|
|
SUBDIRS = config src templates doc hooks
|
|
DIST_SUBDIRS = config src templates doc hooks
|
|
EXTRA_DIST = \
|
|
autogen.sh \
|
|
lxc.spec \
|
|
CONTRIBUTING \
|
|
MAINTAINERS
|
|
|
|
RPMARGS =
|
|
|
|
pcdatadir = $(libdir)/pkgconfig
|
|
pcdata_DATA = lxc.pc
|
|
|
|
libtool: $(LIBTOOL_DEPS)
|
|
$(SHELL) ./config.status libtool
|
|
|
|
install-data-local:
|
|
$(MKDIR_P) $(DESTDIR)$(LXCPATH)
|
|
$(MKDIR_P) $(DESTDIR)$(localstatedir)/cache/lxc
|
|
|
|
ChangeLog::
|
|
@touch ChangeLog
|
|
|
|
rpm: dist
|
|
rpmbuild --clean -ta ${distdir}.tar.gz $(RPMARGS)
|