Magellan Linux

Annotation of /mcore-src/trunk/mcore-tools/src/modules/fluxbox/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2277 - (hide annotations) (download)
Tue Jan 14 14:36:04 2014 UTC (10 years, 3 months ago) by niro
File size: 566 byte(s)
-split of fluxbox-menuitem from fluxbox.client.class.in to make things more modular
1 niro 2150 include ../../../Makefile.inc
2    
3 niro 2277 SCRIPTS = fluxbox-rebuild-autostart fluxbox-rebuild-menu fluxbox.client.class fluxbox-menuitem
4 niro 2150
5     all: $(SCRIPTS)
6    
7     install: all
8     $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)
9     $(INSTALL) -m0755 fluxbox-rebuild-autostart $(DESTDIR)/$(MCORE_LIBDIR)
10     $(INSTALL) -m0755 fluxbox-rebuild-menu $(DESTDIR)/$(MCORE_LIBDIR)
11 niro 2277 $(INSTALL) -m0755 fluxbox-menuitem $(DESTDIR)/$(MCORE_LIBDIR)
12 niro 2150 $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
13     $(INSTALL) -m0644 *.class $(DESTDIR)/$(MCORE_LIBDIR)/include
14    
15     clean:
16     rm -f $(SCRIPTS)
17    
18     .PHONY: all install clean