Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2573 - (hide annotations) (download)
Thu Sep 17 10:35:50 2015 UTC (8 years, 9 months ago) by niro
File size: 528 byte(s)
-added initial network control class
1 niro 2185 include ../../../Makefile.inc
2    
3 niro 2573 SCRIPTS = network.client.class network.control.class
4 niro 2185
5     all: $(SCRIPTS)
6    
7 niro 2573 install: install-client install-control all
8    
9     install-client: all
10 niro 2185 $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
11 niro 2573 $(INSTALL) -m0644 *.client.class $(DESTDIR)/$(MCORE_LIBDIR)/include
12 niro 2185
13 niro 2573 install-control: all
14     $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
15     $(INSTALL) -m0644 *.control.class $(DESTDIR)/$(MCORE_LIBDIR)/include
16    
17 niro 2185 clean:
18     rm -f $(SCRIPTS)
19    
20 niro 2573 .PHONY: install-client
21     .PHONY: install-control
22 niro 2185 .PHONY: all install clean