summaryrefslogtreecommitdiff
path: root/cleopatre/buildroot/package/fw_wd/fw_wd.mk
blob: 96611ee50d83b024718f2e79425c12cd73d90a8c (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
78
79
80
81
82
83
84
85
86
87
88
#############################################################
#
# fw_wd (helper program to use the watchdog of firmware).
#
#############################################################
# Copyright (C) 2009 by SPiDCOM technologies
#
# 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
#

FW_WD_VERSION:=0.0.1
FW_WD_SITE:=$(BASE_DIR)/../application/fw_wd
FW_WD_NAME:=fw_wd-$(FW_WD_VERSION)
FW_WD_DIR:=$(BUILD_DIR)/fw_wd-$(FW_WD_VERSION)

fw_wd-source:

$(FW_WD_DIR)/.unpacked:
	ln -s $(FW_WD_SITE) $(FW_WD_DIR)
	touch $(FW_WD_DIR)/.unpacked

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

$(FW_WD_DIR)/fw_wd: $(FW_WD_DIR)/.configured
	(cd $(FW_WD_DIR); $(TARGET_CONFIGURE_OPTS) $(MAKE))

$(TARGET_DIR)/usr/bin/fw_wd: $(FW_WD_DIR)/fw_wd
	mkdir -p $(TARGET_DIR)/usr/bin
	cp $(FW_WD_DIR)/fw_wd $(TARGET_DIR)/usr/bin/fw_wd

$(TARGET_DIR)/usr/bin/fwwatchd: $(FW_WD_DIR)/fwwatchd
	mkdir -p $(TARGET_DIR)/usr/bin
	cp $< $@

$(TARGET_DIR)/usr/bin/fwwatchd-clean: $(FW_WD_DIR)/fwwatchd-clean
	mkdir -p $(TARGET_DIR)/usr/bin
	cp $< $@

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

$(TARGET_DIR)/etc/default/fwwatchd: $(FW_WD_DIR)/fwwatchd.default
	mkdir -p $(TARGET_DIR)/etc/default/
	cp $< $@

fw_wd: uclibc $(TARGET_DIR)/usr/bin/fw_wd \
	$(TARGET_DIR)/usr/bin/fwwatchd \
	$(TARGET_DIR)/usr/bin/fwwatchd-clean \
	$(TARGET_DIR)/etc/init.d/S99fwwatchd \
	$(TARGET_DIR)/etc/default/fwwatchd

fw_wd-clean:
	rm -f $(TARGET_DIR)/usr/bin/fw_wd
	rm -f $(TARGET_DIR)/usr/bin/fwwatchd
	rm -f $(TARGET_DIR)/usr/bin/fwwatchd-clean
	rm -f $(TARGET_DIR)/etc/init.d/S99fwwatchd
	rm -f $(TARGET_DIR)/etc/default/fwwatchd
	-$(MAKE) -C $(FW_WD_DIR) clean

fw_wd-dirclean:
	rm -f $(FW_WD_DIR)

# We declare $(FW_WD_DIR)/fw_wd rule as PHONY to force compilation
.PHONY: $(FW_WD_DIR)/fw_wd

#############################################################
#
# Toplevel Makefile options
#
#############################################################
ifeq ($(strip $(BR2_PACKAGE_FW_WD)),y)
TARGETS+=fw_wd
endif