mirror of
https://github.com/SELinuxProject/selinux
synced 2025-01-08 22:49:44 +00:00
c48b7fe336
Future systems will not support html in a pygtk window as webkit is going away. I decided to add the full set of gui tools and then remove the one I don't want to support just in case someone wants to resurrect this at some point. Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Dan Walsh <dwalsh@redhat.com>
38 lines
835 B
Makefile
38 lines
835 B
Makefile
# Installation directories.
|
|
PREFIX ?= ${DESTDIR}/usr
|
|
BINDIR ?= $(PREFIX)/bin
|
|
SHAREDIR ?= $(PREFIX)/share/system-config-selinux
|
|
|
|
TARGETS= \
|
|
booleansPage.py \
|
|
domainsPage.py \
|
|
fcontextPage.py \
|
|
html_util.py \
|
|
loginsPage.py \
|
|
mappingsPage.py \
|
|
modulesPage.py \
|
|
polgen.glade \
|
|
portsPage.py \
|
|
semanagePage.py \
|
|
statusPage.py \
|
|
system-config-selinux.glade \
|
|
usersPage.py
|
|
|
|
all: $(TARGETS) system-config-selinux.py polgengui.py templates polgen.py
|
|
|
|
install: all
|
|
-mkdir -p $(SHAREDIR)/templates
|
|
-mkdir -p $(BINDIR)
|
|
install -m 755 system-config-selinux.py $(SHAREDIR)
|
|
install -m 755 polgengui.py $(SHAREDIR)
|
|
install -m 755 polgen.py $(SHAREDIR)
|
|
(cd $(BINDIR); ln -fs ../share/system-config-selinux/polgen.py sepolgen)
|
|
install -m 644 $(TARGETS) $(SHAREDIR)
|
|
install -m 644 templates/*.py $(SHAREDIR)/templates/
|
|
|
|
clean:
|
|
|
|
indent:
|
|
|
|
relabel:
|