Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2216 - (hide annotations) (download)
Fri Jan 10 23:28:02 2014 UTC (10 years, 4 months ago) by niro
File size: 231 byte(s)
-added Makefile
1 niro 2216 include ../Makefile.inc
2    
3     FILES = mcore.conf
4    
5     all: $(FILES)
6    
7     install: all
8     $(INSTALL) -d $(DESTDIR)/$(SYSCONFDIR)/mcore
9     $(INSTALL) -m0644 mcore.conf $(DESTDIR)/$(SYSCONFDIR)/mcore
10    
11     clean:
12     rm -f $(FILES)
13    
14     .PHONY: all install clean