blob: 83087fe3b1dbb5a7a4589532f24a618aae10dec5 [file] [log] [blame]
kthacker85477532006-04-17 14:39:05 +00001# Copyright (c) 2002, Adam Dunkels.
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions
6# are met:
7# 1. Redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer.
9# 2. Redistributions in binary form must reproduce the above copyright
10# notice, this list of conditions and the following disclaimer in the
11# documentation and/or other materials provided with the distribution.
12# 3. All advertising materials mentioning features or use of this software
13# must display the following acknowledgement:
14# This product includes software developed by Adam Dunkels.
15# 4. The name of the author may not be used to endorse or promote
16# products derived from this software without specific prior
17# written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
20# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
23# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
25# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30#
31# This file is part of the Contiki desktop environment
32#
kthacker2646b512006-04-17 14:42:28 +000033# $Id: Makefile,v 1.2 2006/04/17 14:42:28 kthacker Exp $
kthacker85477532006-04-17 14:39:05 +000034#
35
36CONTIKI=../contiki
37
38usage:
39 @echo "Make sure the Contiki sources is in the directory $(CONTIKI)"
40 @echo 'To compile Contiki, use "'$(MAKE)' target" where target'
41 @echo 'is one of the following:'
42 @echo all
43 @echo cpc
44 @echo cpcnet
45 @echo programs
46 @echo netprogs
47 @echo '(Also check the Makefile for more targets to try...)'
48
49all: clean cpc cpcnet programs
50
51programs:
52 $(MAKE) CONTIKI=$(CONTIKI) -f Makefile.programs
53
54netprogs:
55 $(MAKE) CONTIKI=$(CONTIKI) -f Makefile.netprogs
56
57cpc:
58 $(MAKE) CONTIKI=$(CONTIKI) -f Makefile.cpc
59
60cpcnet:
61 $(MAKE) CONTIKI=$(CONTIKI) -f Makefile.cpc-net
62
63include Makefile.common
64