1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 08:25:58 +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:
Mark VanderVoord
2013-02-06 16:49:57 -08:00

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