Sha256: 30500d663673159b59b2102c8a383b43525384e1631e00cd1757b5503abd84b0

Contents?: true

Size: 615 Bytes

Versions: 17

Compression:

Stored size: 615 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

17 entries across 14 versions & 1 rubygems

Version Path
ceedling-0.29.1 vendor/cmock/vendor/c_exception/makefile
ceedling-0.29.1 vendor/c_exception/makefile
ceedling-0.29.0 vendor/cmock/vendor/c_exception/makefile
ceedling-0.29.0 vendor/c_exception/makefile
ceedling-0.19.0 vendor/c_exception/makefile
ceedling-0.19.0 vendor/cmock/vendor/c_exception/makefile
ceedling-0.18.0 vendor/c_exception/makefile
ceedling-0.17.0 vendor/c_exception/makefile
ceedling-0.16.0 vendor/c_exception/makefile
ceedling-0.15.6 vendor/c_exception/makefile
ceedling-0.15.5 vendor/c_exception/makefile
ceedling-0.15.4 vendor/c_exception/makefile
ceedling-0.15.3 vendor/c_exception/makefile
ceedling-0.15.2 vendor/c_exception/makefile
ceedling-0.15.1 vendor/c_exception/makefile
ceedling-0.15.0 vendor/c_exception/makefile
ceedling-0.13.0 vendor/c_exception/makefile