Magellan Linux

Annotation of /alx-src/tags/alx-web-0_7_2_20190726_1/sudo/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12867 - (hide annotations) (download)
Tue Nov 13 08:46:51 2018 UTC (5 years, 10 months ago) by niro
Original Path: alx-src/branches/alx-web-070/sudo/Makefile
File size: 277 byte(s)
-use sudo to fix some permission issues with wol
1 niro 12867 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