Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2647 - (show annotations) (download)
Tue Nov 10 14:41:14 2015 UTC (8 years, 5 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 include ../../../Makefile.inc
2
3 SCRIPTS = sysvinit.client.class mcore-system-service
4
5 all: $(SCRIPTS)
6
7 install: all
8 $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
9 $(INSTALL) -m0644 *.class $(DESTDIR)/$(MCORE_LIBDIR)/include
10 $(INSTALL) -m0755 mcore-system-service $(DESTDIR)/$(MCORE_LIBDIR)
11
12 clean:
13 rm -f $(SCRIPTS)
14
15 .PHONY: all install clean