Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2842 - (show annotations) (download)
Fri Nov 16 13:43:52 2018 UTC (5 years, 5 months ago) by niro
File size: 643 byte(s)
-support variable hdmi configuration
1 include ../../../Makefile.inc
2
3 SCRIPTS = graphic.client.class graphic.control.class
4
5 ifeq ($(SYSTEMINIT),systemd)
6 SUBDIRS += systemd
7 endif
8
9 all: $(SCRIPTS)
10
11 install: install-common install-client install-control all
12
13 install-common: all
14
15 install-client: all
16 $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
17 $(INSTALL) -m0644 *.client.class $(DESTDIR)/$(MCORE_LIBDIR)/include
18
19 install-control: all
20 $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
21 $(INSTALL) -m0644 *.control.class $(DESTDIR)/$(MCORE_LIBDIR)/include
22
23 clean:
24 rm -f $(SCRIPTS)
25
26 .PHONY: install-common
27 .PHONY: install-client
28 .PHONY: install-control
29 .PHONY: all install clean