Magellan Linux

Annotation of /mcore-src/trunk/mcore-tools/grub/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2724 - (hide annotations) (download)
Mon Dec 21 09:31:33 2015 UTC (8 years, 5 months ago) by niro
File size: 405 byte(s)
-reworked Makefiles that they really support install-common, install-client and install install-control targets
1 niro 2315 include ../Makefile.inc
2    
3     FILES = mcored.conf
4    
5     all: $(FILES)
6    
7 niro 2724 install: install-common install-client install-control all
8    
9     install-common: all
10    
11     install-client: all
12 niro 2315 $(INSTALL) -d $(DESTDIR)/$(CONFDDIR)/grub.d
13 niro 2317 $(INSTALL) -m0644 mcored.conf $(DESTDIR)/$(CONFDDIR)/grub.d/50-mcored
14 niro 2315
15 niro 2724 install-control: all
16    
17 niro 2315 clean:
18    
19 niro 2724 .PHONY: install-common
20     .PHONY: install-client
21     .PHONY: install-control
22 niro 2315 .PHONY: all install clean