mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-06-17 20:03:42 +08:00
A small change to the makefile so that it builds in a cygwin environment
This commit is contained in:
4
makefile
4
makefile
@ -17,7 +17,9 @@ SRC_FILES=src/unity.c test/testunity.c build/testunity_Runner.c
|
||||
INC_DIRS=-Isrc
|
||||
SYMBOLS=-DTEST -DUNITY_SUPPORT_64
|
||||
|
||||
ifeq ($(OS),Windows_NT)
|
||||
ifeq ($(OSTYPE),cygwin)
|
||||
CLEANUP = rm -f build/*.o ; rm -f $(TARGET) ; mkdir -p build
|
||||
else ifeq ($(OS),Windows_NT)
|
||||
CLEANUP = del /F /Q build\* && del /F /Q $(TARGET)
|
||||
else
|
||||
CLEANUP = rm -f build/*.o ; rm -f $(TARGET) ; mkdir -p build
|
||||
|
Reference in New Issue
Block a user