mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-29 11:14:27 +01:00
Merge pull request #31 from chrisdew/master
The `build` directory is not created when running make, which yields an error.
This commit is contained in:
2
makefile
2
makefile
@@ -20,7 +20,7 @@ SYMBOLS=-DTEST -DUNITY_SUPPORT_64
|
|||||||
ifeq ($(OS),Windows_NT)
|
ifeq ($(OS),Windows_NT)
|
||||||
CLEANUP = del /F /Q build\* && del /F /Q $(TARGET)
|
CLEANUP = del /F /Q build\* && del /F /Q $(TARGET)
|
||||||
else
|
else
|
||||||
CLEANUP = rm -f build/*.o ; rm -f $(TARGET)
|
CLEANUP = rm -f build/*.o ; rm -f $(TARGET) ; mkdir -p build
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: clean default
|
all: clean default
|
||||||
|
|||||||
Reference in New Issue
Block a user