summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
-rw-r--r--ubi-utils/Makefile3
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b7ffd58..679dc7e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,13 @@
# -*- sh -*-
+OPTFLAGS := -O2 -Wall
SBINDIR=/usr/sbin
MANDIR=/usr/man
INCLUDEDIR=/usr/include
#CROSS=arm-linux-
CC := $(CROSS)gcc
-CFLAGS := -I./include -O2 -Wall
+CFLAGS := -I./include $(OPTFLAGS)
ifeq ($(origin CROSS),undefined)
BUILDDIR := .
diff --git a/ubi-utils/Makefile b/ubi-utils/Makefile
index 797807d..bef8227 100644
--- a/ubi-utils/Makefile
+++ b/ubi-utils/Makefile
@@ -7,12 +7,13 @@ HOST_VERSION_NAME := $(shell uname -r)
BUILD_CPU := $(shell uname -m)
BUILD_OS := $(shell uname -o)
+OPTFLAGS := -O2 -g -Wall
KERNELHDR := ../include
DESTDIR := /usr/local
SBINDIR := bin
CC := $(CROSS)gcc
-CFLAGS := -I./inc -I./src -I$(KERNELHDR) -O2 -g -Wall -Werror \
+CFLAGS := -I./inc -I./src -I$(KERNELHDR) $(OPTFLAGS) -Werror \
-Wwrite-strings -W -std=gnu99 \
-DHOST_OS_NAME=\"$(HOST_OS_NAME)\" \
-DHOST_VERSION_NAME=\"$(HOST_VERSION_NAME)\" \