Magellan Linux

Contents of /mcore-src/trunk/mcore-tools/src/modules/tigervnc/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


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