1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-26 18:01:35 +01:00

Update makefile

The `build` directory is not created when running make, which yields an error.
This commit is contained in:
Chris Dew
2013-02-01 12:47:02 +00:00
parent 5ad372b6b3
commit 726227b1b7

View File

@@ -20,7 +20,7 @@ SYMBOLS=-DTEST -DUNITY_SUPPORT_64
ifeq ($(OS),Windows_NT)
CLEANUP = del /F /Q build\* && del /F /Q $(TARGET)
else
CLEANUP = rm -f build/*.o ; rm -f $(TARGET)
CLEANUP = rm -f build/*.o ; rm -f $(TARGET) ; mkdir -p build
endif
all: clean default