makefile 1.8 KB
Newer Older
W
Warwick Stone 已提交
1 2 3 4 5 6
# ==========================================
#   Unity Project - A Test Framework for C
#   Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
#   [Released under MIT License. Please refer to license.txt for details]
# ==========================================

7
#We try to detect the OS we are running on, and adjust commands as needed
8 9
ifeq ($(OS),Windows_NT)
  ifeq ($(shell uname -s),) # not in a bash-like shell
10 11
	CLEANUP = del /F /Q
	MKDIR = mkdir
12 13 14 15
  else # in a bash-like shell, like msys
	CLEANUP = rm -f
	MKDIR = mkdir -p
  endif
W
Warwick Stone 已提交
16 17
	TARGET_EXTENSION=.exe
else
18 19
	CLEANUP = rm -f
	MKDIR = mkdir -p
W
Warwick Stone 已提交
20 21
	TARGET_EXTENSION=.out
endif
22 23

C_COMPILER=gcc
24 25 26 27 28
ifeq ($(shell uname -s), Darwin)
C_COMPILER=clang
endif

UNITY_ROOT=../..
29

30
CFLAGS=-std=c99
31 32 33 34 35 36 37 38 39 40 41 42 43
CFLAGS += -Wall
CFLAGS += -Wextra
CFLAGS += -Wpointer-arith
CFLAGS += -Wcast-align
CFLAGS += -Wwrite-strings
CFLAGS += -Wswitch-default
CFLAGS += -Wunreachable-code
CFLAGS += -Winit-self
CFLAGS += -Wmissing-field-initializers
CFLAGS += -Wno-unknown-pragmas
CFLAGS += -Wstrict-prototypes
CFLAGS += -Wundef
CFLAGS += -Wold-style-definition
44
#CFLAGS += -Wno-misleading-indentation
45

46
TARGET_BASE1=all_tests
W
Warwick Stone 已提交
47
TARGET1 = $(TARGET_BASE1)$(TARGET_EXTENSION)
W
Warwick Stone 已提交
48 49 50 51 52 53 54 55 56 57
SRC_FILES1=\
  $(UNITY_ROOT)/src/unity.c \
  $(UNITY_ROOT)/extras/fixture/src/unity_fixture.c \
  src/ProductionCode.c \
  src/ProductionCode2.c \
  test/TestProductionCode.c \
  test/TestProductionCode2.c \
  test/test_runners/TestProductionCode_Runner.c \
  test/test_runners/TestProductionCode2_Runner.c \
  test/test_runners/all_tests.c
W
Warwick Stone 已提交
58 59 60 61 62 63
INC_DIRS=-Isrc -I$(UNITY_ROOT)/src -I$(UNITY_ROOT)/extras/fixture/src
SYMBOLS=

all: clean default

default:
64
	$(C_COMPILER) $(CFLAGS) $(INC_DIRS) $(SYMBOLS) $(SRC_FILES1) -o $(TARGET1)
65
	- ./$(TARGET1) -v
W
Warwick Stone 已提交
66 67

clean:
68
	$(CLEANUP) $(TARGET1)
W
Warwick Stone 已提交
69

70 71
ci: CFLAGS += -Werror
ci: default