92fa047a22
--HG-- extra : convert_revision : dbc14cc698cf3a070592964fdc290118aa39bb2d
21 lines
508 B
Makefile
21 lines
508 B
Makefile
include ../vars.mk
|
|
|
|
TRIGGERS= gtk-icon-cache info-files mimedb register-shell
|
|
TRIGGERS+= xml-catalog gtk-immodules initramfs-tools openrc-service
|
|
TRIGGERS+= update-desktopdb gtk-pixbuf-loaders pango-modules x11-fonts
|
|
TRIGGERS+= system-accounts gconf-schemas gio-modules
|
|
|
|
.PHONY: all
|
|
all:
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
|
|
.PHONY: install
|
|
install:
|
|
install -d $(DESTDIR)$(SHAREDIR)/triggers
|
|
install -m 755 $(TRIGGERS) $(DESTDIR)$(SHAREDIR)/triggers
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
-rm -rf $(DESTDIR)$(SHAREDIR)/triggers
|