From 06f2efaeb2c5dbc95b2b255575334315fbdaed7e Mon Sep 17 00:00:00 2001 From: Mike Smith Date: Mon, 12 Jan 2015 16:02:43 +0000 Subject: makefile now makes the target at the right level --- ZKTest/Release/ZKTest | Bin 34784 -> 0 bytes ZKTest/Release/makefile | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) delete mode 100755 ZKTest/Release/ZKTest diff --git a/ZKTest/Release/ZKTest b/ZKTest/Release/ZKTest deleted file mode 100755 index 3d568f6..0000000 Binary files a/ZKTest/Release/ZKTest and /dev/null differ diff --git a/ZKTest/Release/makefile b/ZKTest/Release/makefile index 6e2c718..1a24e75 100644 --- a/ZKTest/Release/makefile +++ b/ZKTest/Release/makefile @@ -38,13 +38,13 @@ endif # Add inputs and outputs from these tool invocations to the build variables # All Target -all: ZKTest +all: ../ZKTest # Tool invocations -ZKTest: $(OBJS) $(USER_OBJS) +../ZKTest: $(OBJS) $(USER_OBJS) @echo 'Building target: $@' @echo 'Invoking: GCC C++ Linker' - g++ -L/usr/lib/x86_64-linux-gnu/ -o "ZKTest" $(OBJS) $(USER_OBJS) $(LIBS) + g++ -L/usr/lib/x86_64-linux-gnu/ -o "../ZKTest" $(OBJS) $(USER_OBJS) $(LIBS) @echo 'Finished building target: $@' @echo ' ' -- cgit v1.2.1