Magellan Linux

Annotation of /branches/mage-next/doc/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2577 - (hide annotations) (download)
Wed Jan 29 13:38:39 2014 UTC (10 years, 3 months ago) by niro
File size: 324 byte(s)
-re-facored buildsystem
1 niro 2577 include ../Makefile.inc
2    
3     FILES = template.mage template.smage2
4    
5     all: $(FILES)
6    
7     install: all
8     $(INSTALLDIR) $(DESTDIR)/$(DOCDIR)
9     $(INSTALLFILE) $(FILES) $(DESTDIR)/$(DOCDIR)
10    
11     uninstall:
12     for i in $(FILES); do $(RM) $(DESTDIR)/$(DOCDIR)/$${i}; done
13     $(RMDIR) $(DESTDIR)/$(DOCDIR)
14    
15     clean:
16    
17     .PHONY: all install uninstall clean