11d947e604154a830436718a76ea69f6ee6c9453
[bertos.git] / app / randpool / randpool_demo.mk
1 #
2 # $Id$
3 # Copyright 2006 Develer S.r.l. (http://www.develer.com/)
4 # All rights reserved.
5 #
6 # Makefile fragment for DevLib randpool_demo application.
7 #
8 # Author: Daniele Basile <asterix@develer.com>
9 #
10 # $Log$
11 # Revision 1.1  2007/02/15 18:17:51  asterix
12 # Add randpool test program.
13 #
14 #
15
16
17 # Set to 1 for debug builds
18 randpool_demo_DEBUG = 0
19
20 # Our target application
21 TRG += randpool_demo
22
23 randpool_demo_CSRC = \
24         app/randpool/randpool_demo.c \
25         algos/randpool.c \
26         algos/md2.c \
27         drv/timer.c \
28         os/hptime.c 
29
30 randpool_demo_CFLAGS = -O0 -D'ARCH=0' -Iapp/randpool/ -Iapp/randpool/hw
31
32 # Debug stuff
33 ifeq ($(randpool_demo_DEBUG),1)
34         randpool_demo_CFLAGS += -D_DEBUG
35         randpool_demo_PCSRC += drv/kdebug.c
36 endif
37