blob: 96798fdbefe50b454c4d5d143e6308baa321be92 [file] [log] [blame]
Gaurav Shah322536d2010-01-28 15:01:23 -08001# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Gaurav Shah7ca31f32010-02-16 19:04:11 -08005export CC = gcc
6export CFLAGS = -Wall -ansi -DNDEBUG
7export TOP = $(shell pwd)
8export INCLUDEDIR = $(TOP)/include
9export INCLUDES = -I$(INCLUDEDIR)
Gaurav Shah322536d2010-01-28 15:01:23 -080010
11SUBDIRS=common crypto utils tests
12
13all:
14 for i in $(SUBDIRS); do \
15 ( cd $$i ; $(MAKE)) ; \
16 done
17
18clean:
19 for i in $(SUBDIRS); do \
20 ( cd $$i ; make clean) ; \
21 done