diff options
author | Gaurav Shah <gauravsh@google.com> | 2010-02-16 19:04:11 -0800 |
---|---|---|
committer | Gaurav Shah <gauravsh@google.com> | 2010-02-16 19:04:11 -0800 |
commit | 7ca31f3e4d21bb7dfa39e1e4b9ab42c7047e66d8 (patch) | |
tree | 4e6a101231e65a7cdb1d33b15c72c9ea3105c6e7 /Makefile | |
parent | 431b98886ed80b46e404d7288362f8dcdfa9ace3 (diff) | |
download | vboot-7ca31f3e4d21bb7dfa39e1e4b9ab42c7047e66d8.tar.gz |
Vboot Reference: Misc style fixes to Makefile and fix testing script.
Review URL: http://codereview.chromium.org/600114
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -2,11 +2,11 @@ # 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 -export TOP=$(shell pwd) -export INCLUDEDIR=$(TOP)/include -export INCLUDES=-I$(INCLUDEDIR) +export CC = gcc +export CFLAGS = -Wall -ansi -DNDEBUG +export TOP = $(shell pwd) +export INCLUDEDIR = $(TOP)/include +export INCLUDES = -I$(INCLUDEDIR) SUBDIRS=common crypto utils tests |