mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-29 03:04:27 +01:00
Initial project population
git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@1 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
This commit is contained in:
13
makefile
Normal file
13
makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
C_COMPILER=gcc
|
||||
OUT_FILE=-o testunity
|
||||
ifeq ($(OS),Windows_NT)
|
||||
OUT_EXTENSION=.exe
|
||||
else
|
||||
OUT_EXTENSION=.out
|
||||
endif
|
||||
SRC_FILES=src/unity.c test/testunity.c test/testunity_Runner.c
|
||||
INC_DIRS=-Isrc
|
||||
SYMBOLS=-DTEST
|
||||
|
||||
default:
|
||||
$(C_COMPILER) $(INC_DIRS) $(SYMBOLS) $(SRC_FILES) $(OUT_FILE)$(OUT_EXTENSION)
|
||||
Reference in New Issue
Block a user