Magellan Linux

Annotation of /mcore-src/trunk/mcore-tools/src/modules/scm-egk/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2727 - (hide annotations) (download)
Thu Jan 28 14:20:31 2016 UTC (8 years, 3 months ago) by niro
File size: 600 byte(s)
-added scm-egk module
1 niro 2727 include ../../../Makefile.inc
2    
3     SCRIPTS = scm-egk.client.class scm-egk.control.class scm-egk.conf
4    
5     all: $(SCRIPTS)
6    
7     install: install-common install-client install-control all
8    
9     install-common: all
10    
11     install-client: all
12     $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
13     $(INSTALL) -m0644 *.client.class $(DESTDIR)/$(MCORE_LIBDIR)/include
14    
15     install-control: all
16     $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
17     $(INSTALL) -m0644 *.control.class $(DESTDIR)/$(MCORE_LIBDIR)/include
18    
19     clean:
20     rm -f $(SCRIPTS)
21    
22     .PHONY: install-common
23     .PHONY: install-client
24     .PHONY: install-control
25     .PHONY: all install clean