mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
Add a toplevel makefile, to ease making a single tarball.
This commit is contained in:
parent
c8eb1e4c42
commit
4d88ec41cc
1 changed files with 26 additions and 0 deletions
26
Makefile
Normal file
26
Makefile
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
|
include common/Make.rules
|
||||||
|
|
||||||
|
DIRS=parser \
|
||||||
|
profiles \
|
||||||
|
utils \
|
||||||
|
changehat/libapparmor \
|
||||||
|
changehat/mod_apparmor \
|
||||||
|
changehat/pam_apparmor \
|
||||||
|
management/yastui \
|
||||||
|
common \
|
||||||
|
tests
|
||||||
|
|
||||||
|
RELEASE_DIR=apparmor-${VERSION}-${REPO_VERSION}
|
||||||
|
|
||||||
|
_dist: clean
|
||||||
|
mkdir ${RELEASE_DIR}
|
||||||
|
for dir in ${DIRS} ; do \
|
||||||
|
svn export -r $(REPO_VERSION) $(REPO_URL)/$${dir} $(RELEASE_DIR)/$${dir} ; \
|
||||||
|
done
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-rm -rf ${RELEASE_DIR}
|
Loading…
Add table
Reference in a new issue