makefile 1.4 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 8 9 10 11 12 13 14
#We try to detect the OS we are running on, and adjust commands as needed
ifeq ($(OSTYPE),cygwin)
	CLEANUP = rm -f
	MKDIR = mkdir -p
	TARGET_EXTENSION=.out
else ifeq ($(OS),Windows_NT)
	CLEANUP = del /F /Q
	MKDIR = mkdir
W
Warwick Stone 已提交
15 16
	TARGET_EXTENSION=.exe
else
17 18
	CLEANUP = rm -f
	MKDIR = mkdir -p
W
Warwick Stone 已提交
19 20
	TARGET_EXTENSION=.out
endif
21 22 23 24

UNITY_ROOT=../..
C_COMPILER=gcc
TARGET_BASE1=all_tests
W
Warwick Stone 已提交
25
TARGET1 = $(TARGET_BASE1)$(TARGET_EXTENSION)
W
Warwick Stone 已提交
26 27 28 29 30 31 32 33 34 35
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 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49
INC_DIRS=-Isrc -I$(UNITY_ROOT)/src -I$(UNITY_ROOT)/extras/fixture/src
SYMBOLS=

all: clean default

default:
#	ruby auto/generate_test_runner.rb test/TestProductionCode.c  test/test_runners/TestProductionCode_Runner.c
#	ruby auto/generate_test_runner.rb test/TestProductionCode2.c test/test_runners/TestProductionCode2_Runner.c
	$(C_COMPILER) $(INC_DIRS) $(SYMBOLS) $(SRC_FILES1) -o $(TARGET1)
	./$(TARGET1)

clean:
	$(CLEANUP)