Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2647 - (hide annotations) (download)
Tue Nov 10 14:41:14 2015 UTC (8 years, 6 months ago) by niro
File size: 347 byte(s)
-use a helper script to control system services and to be able to control services with other modules
1 niro 2166 include ../../../Makefile.inc
2    
3 niro 2647 SCRIPTS = sysvinit.client.class mcore-system-service
4 niro 2166
5     all: $(SCRIPTS)
6    
7     install: all
8     $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
9     $(INSTALL) -m0644 *.class $(DESTDIR)/$(MCORE_LIBDIR)/include
10 niro 2647 $(INSTALL) -m0755 mcore-system-service $(DESTDIR)/$(MCORE_LIBDIR)
11 niro 2166
12     clean:
13     rm -f $(SCRIPTS)
14    
15     .PHONY: all install clean