Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


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