blob: 0968409a237f664e55c2ebeba767d69619436fd1 [file] [log] [blame]
yaberauneyaef772532009-10-09 17:55:43 +00001#
2# Top-level Makefile for LTP. See INSTALL for more info.
3#
4# Copyright (C) 2009, Cisco Systems Inc.
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License along
17# with this program; if not, write to the Free Software Foundation, Inc.,
18# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19#
20# Garrett Cooper, July 2009
21#
alaffincc2e5552000-07-27 17:13:18 +000022
yaberauneyaef772532009-10-09 17:55:43 +000023# Force IDcheck.sh to fix any issues found with $(DESTDIR)/etc/group and
24# $(DESTDIR)/etc/passwd automatically when after running the top-level
25# install target.
26CREATE_ENTRIES ?= 0
27
28top_srcdir ?= $(CURDIR)
29
30include $(top_srcdir)/include/mk/env_pre.mk
31include $(top_srcdir)/include/mk/automake.mk
32
33# This variable is automatically changed from help to all once someone has
yaberauneya2f27b052009-11-07 01:23:20 +000034# run configure, or the equivalent steps manually, as described in INSTALL.
yaberauneyaef772532009-10-09 17:55:43 +000035ifeq ($(wildcard $(top_builddir)/include/config.h),)
36.DEFAULT_GOAL := help
yaberauneya87e48532009-08-12 21:29:07 +000037else
yaberauneyaef772532009-10-09 17:55:43 +000038.DEFAULT_GOAL := all
vapier1400d642006-02-24 02:16:55 +000039endif
vapierd4e145e2006-02-11 04:33:08 +000040
yaberauneyaef772532009-10-09 17:55:43 +000041.SUFFIXES:
42.SUFFIXES: .am .default .h .in .m4 .mk
subrata_modak8dfa1b32008-07-26 04:15:36 +000043
yaberauneyaef772532009-10-09 17:55:43 +000044vpath %.am $(top_srcdir)/m4
45vpath %.default $(top_srcdir)/include
46vpath %.h $(top_srcdir)/include:$(top_builddir)/include
47vpath %.in $(top_srcdir)/include
48vpath %.m4 $(top_srcdir)/m4
49vpath %.mk $(top_srcdir)/mk:$(top_srcdir)/mk/include
vapier1400d642006-02-24 02:16:55 +000050
yaberauneyaef772532009-10-09 17:55:43 +000051# Skip running IDcheck.sh at the end of install?
52SKIP_IDCHECK ?= 0
yaberauneya3ab801e2009-07-10 23:01:27 +000053
yaberauneyaef772532009-10-09 17:55:43 +000054# User wants uclinux binaries?
55UCLINUX ?= 0
alaffincc2e5552000-07-27 17:13:18 +000056
yaberauneyaef772532009-10-09 17:55:43 +000057# User wants uclinux binaries. Do this for backwards compatibility, but
58# print out a warning.
59ifneq ($(filter uclinux%,$(MAKECMDGOALS)),)
60$(warning uclinux* targets will be deprecated in the future.)
61$(warning Please specify UCLINUX=1 on the command line to achieve the same)
62$(warning functionality.)
63UCLINUX := 1
yaberauneya3ab801e2009-07-10 23:01:27 +000064endif
alaffincc2e5552000-07-27 17:13:18 +000065
yaberauneyaef772532009-10-09 17:55:43 +000066export UCLINUX
alaffincc2e5552000-07-27 17:13:18 +000067
yaberauneyaef772532009-10-09 17:55:43 +000068# CLEAN_TARGETS: Targets which exist solely in clean.
69# COMMON_TARGETS: Targets which exist in all, clean, and install.
70# INSTALL_TARGETS: Targets which exist in clean and install (contains
71# COMMON_TARGETS).
72# BOOTSTRAP_TARGETS: Directories required to bootstrap out-of-build-tree
73# support.
74
75# We're not using uclinux based targets (default).
76ifneq ($(UCLINUX),1)
77COMMON_TARGETS := pan utils
78INSTALL_TARGETS := doc
79endif
80
81COMMON_TARGETS += testcases tools
82INSTALL_TARGETS += $(COMMON_TARGETS) runtest
83CLEAN_TARGETS += $(COMMON_TARGETS) lib include runtest
84BOOTSTRAP_TARGETS := $(sort $(COMMON_TARGETS) $(CLEAN_TARGETS)\
85 $(INSTALL_TARGETS))
86
87CLEAN_TARGETS := $(addsuffix -clean,$(CLEAN_TARGETS))
88INSTALL_TARGETS := $(addsuffix -install,$(INSTALL_TARGETS))
89MAKE_TARGETS := $(addsuffix -all,$(filter-out lib,$(COMMON_TARGETS)))
90
91# There's no reason why we should run `all' twice. Otherwise we're just wasting
92# 3+ mins of useful CPU cycles on a modern machine, and even more time on an
93# overtaxed one, or one where -j => 1 was specified.
94all: $(addsuffix -all,$(COMMON_TARGETS))
95
96$(MAKE_TARGETS): lib-install
97
98.PHONY: include-all include-install
99include-install: include/config.h include/mk/config.mk include-all
100
yaberauneyaf6720f22009-10-10 22:13:44 +0000101INSTALL_DIR := $(DESTDIR)/$(prefix)
102
103# build tree bootstrap targets and $(INSTALL_DIR) target.
104$(addprefix $(abs_top_builddir)/,$(BOOTSTRAP_TARGETS)) $(INSTALL_DIR):
yaberauneyaef772532009-10-09 17:55:43 +0000105 mkdir -m 00755 -p "$@"
106
107## Pattern based subtarget rules.
108lib-all: include-install
109
110lib-install: lib-all
111
112.SECONDEXPANSION:
113$(MAKE_TARGETS) include-all lib-all: %-all: $(abs_top_builddir)/$$*
114 $(MAKE) -C $* -f "$(abs_top_srcdir)/$*/Makefile" all
115
116# Let's not conflict with ac-clean, maintainer-clean, etc, so.
117.SECONDEXPANSION:
118$(filter-out include-clean,$(CLEAN_TARGETS)):: %-clean: $(abs_top_builddir)/$$*
119 -$(MAKE) -C $* -f "$(abs_top_srcdir)/$*/Makefile" clean
120
121# Just like everything depends on include-all / -install, we need to get rid
122# of include last to ensure that things won't be monkey screwed up. Only do
123# this if we're invoking clean or a subclean directly though.
124ifneq ($(filter clean,$(MAKECMDGOALS)),)
125INCLUDE_CLEAN_RDEP_SUBJECT := $(CLEAN_TARGETS)
126else
127ifneq ($(filter %clean,$(MAKECMDGOALS)),)
128INCLUDE_CLEAN_RDEP_SUBJECT := $(MAKECMDGOALS)
129endif
130endif
131
132# Remove potential for circular dependencies.
133INCLUDE_CLEAN_RDEPS := $(filter-out include-clean,\
134 $(INCLUDE_CLEAN_RDEP_SUBJECT))
135
136include-clean:: $(INCLUDE_CLEAN_RDEPS) $(abs_top_builddir)/include
137 -$(MAKE) -C include -f "$(abs_top_srcdir)/include/Makefile" clean
138
139# include-install is separate to avoid creating a circular dependency below in
140# the install target.
141.SECONDEXPANSION:
yaberauneyaf6720f22009-10-10 22:13:44 +0000142$(INSTALL_TARGETS) include-install lib-install: %-install: $(abs_top_builddir)/$$*
yaberauneyaef772532009-10-09 17:55:43 +0000143 $(MAKE) -C $* -f "$(abs_top_srcdir)/$*/Makefile" install
144
yaberauneyaef772532009-10-09 17:55:43 +0000145# Just in case configure hasn't been run yet, let's not overambitiously remove
146# the $(INSTALL_DIR).
147clean:: $(CLEAN_TARGETS)
148 $(RM) -f Version
149 $(if $(DESTDIR)$(prefix),-$(RM) -Rf "$(INSTALL_DIR)")
150
yaberauneya0f422082009-10-13 16:58:57 +0000151SRCDIR_INSTALL_SCRIPTS := IDcheck.sh runltp runltplite.sh ver_linux
yaberauneyaef772532009-10-09 17:55:43 +0000152SRCDIR_INSTALL_READONLY := Version
153SRCDIR_INSTALL_TARGETS := $(SRCDIR_INSTALL_SCRIPTS) $(SRCDIR_INSTALL_READONLY)
154
155# Save space. We only need the first line in ChangeLog for runltp*.
156Version: $(top_srcdir)/ChangeLog
157 head -n 1 "$^" > "$@"
158
159$(INSTALL_DIR)/Version: Version
160 install -m 00644 "$(top_builddir)/$(@F)" "$@"
161
162$(addprefix $(DESTDIR)/$(bindir)/,$(BINDIR_INSTALL_SCRIPTS)) \
163$(addprefix $(INSTALL_DIR)/,$(SRCDIR_INSTALL_SCRIPTS)): %:
164 install -m 00755 "$(top_srcdir)/$(@F)" "$@"
165
166INSTALL_TARGETS += $(addprefix $(INSTALL_DIR)/,\
167 $(SRCDIR_INSTALL_TARGETS))
168
169$(INSTALL_TARGETS): $(INSTALL_DIR)
170
171## Install
172install: $(INSTALL_TARGETS)
173ifeq ($(SKIP_IDCHECK),0)
174 @CREATE_ENTRIES=$(CREATE_ENTRIES) \
175 DESTDIR="$(DESTDIR)" \
176 "$(top_srcdir)/IDcheck.sh"
177else
robbiewd34d5812005-07-11 22:28:09 +0000178 @echo "*******************************************************"
yaberauneyaef772532009-10-09 17:55:43 +0000179 @echo "** Will not run IDcheck.sh (SKIP_IDCHECK set to 1). **"
robbiewd34d5812005-07-11 22:28:09 +0000180 @echo "*******************************************************"
yaberauneya3ab801e2009-07-10 23:01:27 +0000181endif
robbiewd34d5812005-07-11 22:28:09 +0000182
yaberauneyaef772532009-10-09 17:55:43 +0000183## Misc targets.
robbiewd34d5812005-07-11 22:28:09 +0000184
yaberauneyaef772532009-10-09 17:55:43 +0000185## Help
subrata_modakaba85b92008-12-11 10:30:33 +0000186.PHONY: help
187help:
yaberauneyab68050b2009-10-25 06:07:38 +0000188 @echo "Please read the Configuration section in $(top_srcdir)/INSTALL"
189 @exit 1
yaberauneyaef772532009-10-09 17:55:43 +0000190
191## Menuconfig
192menuconfig:
193 @$(SHELL) "$(top_srcdir)/ltpmenu"
194
195## Package
196package:
197 @$(RPMBUILD) -ba ltp-devel.spec
198
199## End misc targets.