blob: 55f480367bd9f43b469549d417ed52ab0baaaa65 [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
5export CC=gcc
6export CFLAGS=-Wall -ansi
7export TOP=$(shell pwd)
8export INCLUDEDIR=$(TOP)/include
9export INCLUDES=-I$(INCLUDEDIR)
10
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