Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


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