From 03b9eaa9ba3a2cd0b9bddc8a9198b2384bafc761 Mon Sep 17 00:00:00 2001 From: kykrueger Date: Thu, 6 Oct 2016 11:00:22 +0200 Subject: [PATCH] Fix bug, makefiles for example do not clean on windows --- examples/example_1/makefile | 2 +- examples/example_2/makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/example_1/makefile b/examples/example_1/makefile index d0cd617..01abb55 100644 --- a/examples/example_1/makefile +++ b/examples/example_1/makefile @@ -10,7 +10,7 @@ ifeq ($(OSTYPE),cygwin) MKDIR = mkdir -p TARGET_EXTENSION=.out elseifeq ($(OSTYPE),msys) - CLEANUP = rm -f + CLEANUP = rm -f MKDIR = mkdir -p TARGET_EXTENSION=.exe elseifeq ($(OS),Windows_NT) diff --git a/examples/example_2/makefile b/examples/example_2/makefile index 9f211f7..a834e78 100644 --- a/examples/example_2/makefile +++ b/examples/example_2/makefile @@ -10,7 +10,7 @@ ifeq ($(OSTYPE),cygwin) MKDIR = mkdir -p TARGET_EXTENSION=.out elseifeq ($(OSTYPE),msys) - CLEANUP = rm -f + CLEANUP = rm -f MKDIR = mkdir -p TARGET_EXTENSION=.exe elseifeq ($(OS),Windows_NT)