summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jonas <Jonas@Jonas-PC> 2017-02-13 17:00:20 +0100
committerGravatar Jonas <Jonas@Jonas-PC> 2017-02-13 17:00:20 +0100
commitb3265d3939ba43275066967a673afc90ee035f8e (patch)
treec0fc913189af0a7c95cd0e54089bd4aba0633738
parentc61391681b73ce5c4b60c832ccd5827ab4ff8465 (diff)
downloadtree-b3265d3939ba43275066967a673afc90ee035f8e.tar.gz
makefile fixes
-rw-r--r--tree/.gitignore4
-rw-r--r--tree/Debug/src/subdir.mk33
2 files changed, 35 insertions, 2 deletions
diff --git a/tree/.gitignore b/tree/.gitignore
index f10990a..f9db10c 100644
--- a/tree/.gitignore
+++ b/tree/.gitignore
@@ -1,2 +1,2 @@
-/Debug/src
-/Debug/*.exe \ No newline at end of file
+*.exe
+*.o \ No newline at end of file
diff --git a/tree/Debug/src/subdir.mk b/tree/Debug/src/subdir.mk
new file mode 100644
index 0000000..e0e45bf
--- /dev/null
+++ b/tree/Debug/src/subdir.mk
@@ -0,0 +1,33 @@
+################################################################################
+# Automatically-generated file. Do not edit!
+################################################################################
+
+# Add inputs and outputs from these tool invocations to the build variables
+CPP_SRCS += \
+../src/cData.cpp \
+../src/cNode.cpp \
+../src/cTree.cpp \
+../src/main.cpp
+
+OBJS += \
+./src/cData.o \
+./src/cNode.o \
+./src/cTree.o \
+./src/main.o
+
+CPP_DEPS += \
+./src/cData.d \
+./src/cNode.d \
+./src/cTree.d \
+./src/main.d
+
+
+# Each subdirectory must supply rules for building sources it contributes
+src/%.o: ../src/%.cpp
+ @echo 'Building file: $<'
+ @echo 'Invoking: Cross G++ Compiler'
+ g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@)" -o "$@" "$<"
+ @echo 'Finished building: $<'
+ @echo ' '
+
+