blob: 187104721252601a8acad74f286faa095527020c [file] [log] [blame]
robbiewc28353f2003-01-10 20:04:06 +00001# To cross compile, override one or more of CC, AR, CROSS_CFLAGS,
2# LOADLIBES and LDFLAGS, and be sure to always build from the top level.
3#
4# To override them from the make commandline, do something like this:
5# $ CROSS_COMPILER=/opt/cegl-1.4/hardhat/devkit/ppc/405/bin/powerpc-linux-
6# $ make \
7# CROSS_CFLAGS="-mcpu=403 -D__PPC405__" \
8# CC=${CROSS_COMPILER}gcc \
9# AR=${CROSS_COMPILER}ar \
10# LDFLAGS=-static \
11# LOADLIBES="-lpthread -lc -lresolv -lnss_dns -lnss_files -lm -lc"
12#
13# Alternately, to override them by editing this file, uncomment the
14# following lines:
15# CROSS_COMPILER=/opt/ppc64/powerpc64-linux/bin/
16# CROSS_CFLAGS= -mcpu=403 -D__PPC405__
17# CC=$(CROSS_COMPILER)gcc
18# AR=$(CROSS_COMPILER)ar
19# LDFLAGS=-static
20# LOADLIBES=-lpthread -lc -lresolv -lnss_dns -lnss_files -lm -lc
21# export CC AR LDFLAGS LOADLIBES
22#
23# Note: If you override a variable from the commandline all
24# assignments to it in the Makefiles will be ignored. To set it both
25# in the commandline and in the Makefiles use a dummy variable like in
26# CFLAGS
alaffincc2e5552000-07-27 17:13:18 +000027
robbiewd2a29092003-03-13 15:34:17 +000028export CFLAGS = -Wall $(CROSS_CFLAGS)
alaffincc2e5552000-07-27 17:13:18 +000029
robbiew877d1882003-04-23 19:50:15 +000030menuconfig:
31 @./ltpmenu
32
robbiewa2592be2001-10-12 20:49:09 +000033all: libltp.a
nstrazf307d5f2000-09-14 21:54:44 +000034 @$(MAKE) -C pan $@
plars16dc53f2002-01-29 20:48:08 +000035 @$(MAKE) -C testcases $@
iyermanoj96526092002-12-12 16:08:47 +000036 @$(MAKE) -C tools $@
plars16dc53f2002-01-29 20:48:08 +000037 @echo
38 @echo "***********************************************"
39 @echo "** You now need to do a make install as root **"
40 @echo "***********************************************"
41
42install: all
plars41c51212001-08-28 15:45:34 +000043 @$(MAKE) -C testcases install
iyermanoj640d83c2002-12-20 20:00:36 +000044 @$(MAKE) -C tools install
robbiew877d1882003-04-23 19:50:15 +000045 @./IDcheck.sh
alaffincc2e5552000-07-27 17:13:18 +000046
47libltp.a:
48 @$(MAKE) -C lib $@
49
50clean:
51 @$(MAKE) -C lib $@
nstrazf307d5f2000-09-14 21:54:44 +000052 @$(MAKE) -C pan $@
nstraz00f6d192001-01-22 18:05:27 +000053 @$(MAKE) -C tools $@
plars41c51212001-08-28 15:45:34 +000054 @$(MAKE) -C testcases $@