summaryrefslogtreecommitdiffstats
path: root/package/dummy/dummy.mk
blob: 3eb5f0bb48f366c7057c56fe6d6cc0dd709d14b0 (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
89
90
91
92
93
#############################################################
#
# dummy
#
#############################################################

# Current version, use the latest unless there are any known issues.
DUMMY_VERSION=1.2.3
# The filename of the package to download.
DUMMY_SOURCE=dummy-$(DUMMY_VERSION).tar.bz2
# The site and path to where the source packages are.
DUMMY_SITE=http://www.example.net/dummy/source
# The directory which the source package is extracted to.
DUMMY_DIR=$(BUILD_DIR)/dummy-$(DUMMY_VERSION)
# Which decompression to use, BZCAT or ZCAT.
DUMMY_CAT:=$(BZCAT)
# Target binary for the package.
DUMMY_BINARY:=dummy
# Not really needed, but often handy define.
DUMMY_TARGET_BINARY:=usr/bin/$(DUMMY_BINARY)

# The download rule. Main purpose is to download the source package.
$(DL_DIR)/$(DUMMY_SOURCE):
	$(call DOWNLOAD,$(DUMMY_SITE),$(DUMMY_SOURCE))

# The unpacking rule. Main purpose is to extract the source package, apply any
# patches and update config.guess and config.sub.
$(DUMMY_DIR)/.unpacked: $(DL_DIR)/$(DUMMY_SOURCE)
	$(DUMMY_CAT) $(DL_DIR)/$(DUMMY_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
	toolchain/patch-kernel.sh $(DUMMY_DIR) package/dummy/ dummy-$(DUMMY_VERSION)-\*.patch\*
	$(CONFIG_UPDATE) $(DUMMY_DIR)
	touch $@

# The configure rule. Main purpose is to get the package ready for compilation,
# usually by running the configure script with different kinds of options
# specified.
$(DUMMY_DIR)/.configured: $(DUMMY_DIR)/.unpacked
	(cd $(DUMMY_DIR); rm -rf config.cache; \
		$(TARGET_CONFIGURE_OPTS) \
		$(TARGET_CONFIGURE_ARGS) \
		./configure \
		--target=$(GNU_TARGET_NAME) \
		--host=$(GNU_TARGET_NAME) \
		--build=$(GNU_HOST_NAME) \
		--prefix=/usr \
		--sysconfdir=/etc \
		$(DISABLE_NLS) \
		$(DISABLE_LARGEFILE) \
	)
	touch $@

$(DUMMY_DIR)/$(DUMMY_BINARY): $(DUMMY_DIR)/.configured
	$(MAKE) -C $(DUMMY_DIR)

# The installing rule. Main purpose is to install the binary into the target
# root directory and make sure it is stripped from debug symbols to reduce the
# space requirements to a minimum.
#
# Only the files needed to run the application should be installed to the
# target root directory, to not waste valuable flash space.
$(TARGET_DIR)/$(DUMMY_TARGET_BINARY): $(DUMMY_DIR)/$(DUMMY_BINARY)
	cp -dpf $(DUMMY_DIR)/dummy $@
	$(STRIPCMD) --strip-unneeded $@

# Main rule which shows which other packages must be installed before the dummy
# package is installed. This to ensure that all depending libraries are
# installed.
dummy:	uclibc $(TARGET_DIR)/$(DUMMY_TARGET_BINARY)

# Source download rule. Main purpose to download the source package. Since some
# people would like to work offline, it is mandotory to implement a rule which
# downloads everything this package needs.
dummy-source: $(DL_DIR)/$(DUMMY_SOURCE)

# Clean rule. Main purpose is to clean the build directory, thus forcing a new
# rebuild the next time Buildroot is made.
dummy-clean:
	-$(MAKE) -C $(DUMMY_DIR) clean

# Directory clean rule. Main purpose is to remove the build directory, forcing
# a new extraction, patching and rebuild the next time Buildroot is made.
dummy-dirclean:
	rm -rf $(DUMMY_DIR)

#############################################################
#
# Toplevel Makefile options
#
#############################################################
# This is how the dummy package is added to the list of rules to build.
ifeq ($(BR2_PACKAGE_DUMMY),y)
TARGETS+=dummy
endif