Sha256: 4998191a8457d6a28bffbbe088efe9db85e0e8089a401676bcd61613923718ee

Contents?: true

Size: 592 Bytes

Versions: 19

Compression:

Stored size: 592 Bytes

Contents

#Tool and Lib Locations
C_COMPILER=gcc
C_LIBS=C:/MinGW/lib
UNITY_DIR=vendor/unity/src

#Test File To Be Created
OUT_FILE=test_cexceptions
ifeq ($(OS),Windows_NT)
OUT_EXTENSION=.exe
else
OUT_EXTENSION=.out
endif

#Options
SRC_FILES=lib/CException.c test/TestException.c test/TestException_Runner.c $(UNITY_DIR)/unity.c
INC_DIRS=-Ilib -Itest -I$(UNITY_DIR)
LIB_DIRS=-L$(C_LIBS) 
SYMBOLS=-DTEST -DCEXCEPTION_USE_CONFIG_FILE

#Default Task: Compile And Run Tests
default:
	$(C_COMPILER) $(INC_DIRS) $(LIB_DIRS) $(SYMBOLS) $(SRC_FILES) -o $(OUT_FILE)$(OUT_EXTENSION)
	$(OUT_FILE)$(OUT_EXTENSION)
	

Version data entries

19 entries across 10 versions & 1 rubygems

Version Path
ceedling-0.28.3 vendor/cmock/vendor/c_exception/makefile
ceedling-0.28.3 vendor/c_exception/makefile
ceedling-0.28.2 vendor/c_exception/makefile
ceedling-0.28.1 vendor/cmock/vendor/c_exception/makefile
ceedling-0.28.1 vendor/c_exception/makefile
ceedling-0.27.0 vendor/cmock/vendor/c_exception/makefile
ceedling-0.27.0 vendor/c_exception/makefile
ceedling-0.25.0 vendor/c_exception/makefile
ceedling-0.25.0 vendor/cmock/vendor/c_exception/makefile
ceedling-0.24.0 vendor/cmock/vendor/c_exception/makefile
ceedling-0.24.0 vendor/c_exception/makefile
ceedling-0.22.0 vendor/cmock/vendor/c_exception/makefile
ceedling-0.22.0 vendor/c_exception/makefile
ceedling-0.21.0 vendor/cmock/vendor/c_exception/makefile
ceedling-0.21.0 vendor/c_exception/makefile
ceedling-0.20.3 vendor/c_exception/makefile
ceedling-0.20.3 vendor/cmock/vendor/c_exception/makefile
ceedling-0.20.2 vendor/cmock/vendor/c_exception/makefile
ceedling-0.20.2 vendor/c_exception/makefile