Magellan Linux

Annotation of /branches/mage-next/src/tools/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: 399 byte(s)
-re-facored buildsystem
1 niro 2577 include ../../Makefile.inc
2    
3     SCRIPTS = autodepend ldd-fix search_soname
4    
5     all: $(SCRIPTS)
6     $(CHMOD) +x $(SCRIPTS)
7    
8     install: all
9     $(INSTALLDIR) -d $(DESTDIR)/$(MAGELIBDIR)
10     $(INSTALLEXEC) $(SCRIPTS) $(DESTDIR)/$(MAGELIBDIR)
11    
12     uninstall:
13     for i in $(SCRIPTS); do $(RM) $(DESTDIR)/$(MAGELIBDIR)/$${i}; done
14     $(RMDIR) $(DESTDIR)/$(MAGELIBDIR)
15    
16     clean:
17     $(RM) $(SCRIPTS)
18    
19     .PHONY: all install uninstall clean