summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Smith <mike.smith@codethink.co.uk>2015-01-12 16:02:43 +0000
committerMike Smith <mike.smith@codethink.co.uk>2015-01-12 16:02:43 +0000
commit06f2efaeb2c5dbc95b2b255575334315fbdaed7e (patch)
tree54b7aabda4e019337a360a3a8c1f8d4001ff5000
parent7af3195fe383194f271064e87626b1861129a6e6 (diff)
downloadzookeeper-test-06f2efaeb2c5dbc95b2b255575334315fbdaed7e.tar.gz
makefile now makes the target at the right level
-rwxr-xr-xZKTest/Release/ZKTestbin34784 -> 0 bytes
-rw-r--r--ZKTest/Release/makefile6
2 files changed, 3 insertions, 3 deletions
diff --git a/ZKTest/Release/ZKTest b/ZKTest/Release/ZKTest
deleted file mode 100755
index 3d568f6..0000000
--- a/ZKTest/Release/ZKTest
+++ /dev/null
Binary files 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 ' '