Magellan Linux

Contents of /alx-src/branches/alx-web-070/sudo/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12867 - (show annotations) (download)
Tue Nov 13 08:46:51 2018 UTC (5 years, 5 months ago) by niro
File size: 277 byte(s)
-use sudo to fix some permission issues with wol
1 include ../Makefile.inc
2
3 SUDOERS_CONF_DIR = $(SYSCONFDIR)/sudoers.d
4
5 FILES = 10_ether-wake
6
7 all: $(FILES)
8
9 install: all
10 $(INSTALL) -d $(DESTDIR)/$(SUDOERS_CONF_DIR)
11 $(INSTALL) -m0440 $(FILES) $(DESTDIR)/$(SUDOERS_CONF_DIR)/
12
13 clean:
14 rm -f $(FILES)
15
16 .PHONY: all install clean