blob: 9642066def968c873c856f3529cf3ec0d511c2ea [file] [log] [blame]
David Brownfecda2d2017-09-07 10:20:34 -06001################################################################################
2#
3# Copyright (C) 2015 by Intel Corporation, All Rights Reserved.
4#
5# Global configuration Makefile. Included everywhere.
6#
7################################################################################
8
9CC:=gcc
10CFLAGS:=-Os -std=c99 -Wall -Wextra -D_ISOC99_SOURCE -MMD -I../lib/include/ -I../lib/source/ -I../tests/include/
11vpath %.c ../lib/source/
12ENABLE_TESTS=true
13
14# override MinGW built-in recipe
15%.o: %.c
16 $(COMPILE.c) $(OUTPUT_OPTION) $<
17
18ifeq ($(OS),Windows_NT)
19DOTEXE:=.exe
20endif
21
22# DO NOT EDIT THIS:
23ifeq ($(ENABLE_TESTS), true)
24CFLAGS += -DENABLE_TESTS
25else
26CFLAGS += -DDISABLE_TESTS
27endif
28
29################################################################################