Magellan Linux

Annotation of /mcore-src/trunk/mcore-tools/src/modules/basic-input/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


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