summaryrefslogtreecommitdiff
path: root/cleopatre/buildroot/package/pmd/pmd.mk
blob: 06f46b1c221d52846deced10a8799b3e81b10f60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#############################################################
#
# pmd (Deamon to handle power management).
#
#############################################################
# Copyright (C) 2012 by MStar
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA
#

PMD_VERSION:=0.0.1
PMD_SITE:=$(BASE_DIR)/../application/pmd
PMD_NAME:=pmd-$(PMD_VERSION)
PMD_DIR:=$(BUILD_DIR)/pmd-$(PMD_VERSION)

pmd-source:

$(PMD_DIR)/.unpacked:
	ln -s $(PMD_SITE) $(PMD_DIR)
	touch $(PMD_DIR)/.unpacked

$(PMD_DIR)/.configured: $(PMD_DIR)/.unpacked
	touch $(PMD_DIR)/.configured

$(PMD_DIR)/pmd: $(PMD_DIR)/.configured
	$(TARGET_CONFIGURE_OPTS) \
		$(MAKE) -C $(PMD_DIR)

$(TARGET_DIR)/usr/bin/pmd: $(PMD_DIR)/pmd
	mkdir -p $(TARGET_DIR)/usr/bin
	cp $< $@

$(TARGET_DIR)/usr/bin/suspend: $(PMD_DIR)/suspend
	mkdir -p $(TARGET_DIR)/usr/bin
	cp $< $@

$(TARGET_DIR)/etc/init.d/S90pmd: $(PMD_DIR)/S90pmd
	mkdir -p $(TARGET_DIR)/etc/init.d
	cp $< $@

pmd: uclibc $(TARGET_DIR)/usr/bin/pmd \
	$(TARGET_DIR)/usr/bin/suspend \
	$(TARGET_DIR)/etc/init.d/S90pmd \

pmd-clean:
	rm -f $(TARGET_DIR)/usr/bin/pmd
	rm -f $(TARGET_DIR)/usr/bin/suspend
	rm -f $(TARGET_DIR)/etc/init.d/S90pmd
	-$(MAKE) -C $(PMD_DIR) clean

pmd-dirclean:
	rm -f $(PMD_DIR)

# We declare $(PMD_DIR)/pmd rule as PHONY to force compilation
.PHONY: $(PMD_DIR)/pmd

#############################################################
#
# Toplevel Makefile options
#
#############################################################
ifeq ($(strip $(BR2_PACKAGE_PMD)),y)
TARGETS+=pmd
endif