From eb27fe750b9261c3f87c1c0be0c97c251415d083 Mon Sep 17 00:00:00 2001 From: Quantum Date: Thu, 12 Sep 2013 20:34:52 -0400 Subject: [PATCH] Yes, Make, you need to create that directory. I'd much prefer you to just create it, without my orders. --- GNUmakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 1c9b33e..e9f3501 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -13,7 +13,10 @@ LDFLAGS = -s FILES=build/Keyboard.o build/MainWindow.o build/Window.o \ build/PianoControl.o build/midifile.o build/resources.o -all: MusicKeyboard.exe +all: initdir MusicKeyboard.exe + +initdir: + [ -d build ] || mkdir build MusicKeyboard.exe: $(FILES) $(CC) $(CFLAGS) $(LDFLAGS) $(FILES) -o $@