mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-25 01:07:22 +00:00
22 lines
491 B
Makefile
22 lines
491 B
Makefile
# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
export CC ?= gcc
|
|
export CFLAGS = -Wall -ansi -DNDEBUG -O3
|
|
export TOP = $(shell pwd)
|
|
export INCLUDEDIR = $(TOP)/include
|
|
export INCLUDES = -I$(INCLUDEDIR)
|
|
|
|
SUBDIRS=common crypto utils tests
|
|
|
|
all:
|
|
for i in $(SUBDIRS); do \
|
|
( cd $$i ; $(MAKE)) ; \
|
|
done
|
|
|
|
clean:
|
|
for i in $(SUBDIRS); do \
|
|
( cd $$i ; make clean) ; \
|
|
done
|