diff options
author | Jonas <Jonas@Jonas-PC> | 2017-02-13 16:57:18 +0100 |
---|---|---|
committer | Jonas <Jonas@Jonas-PC> | 2017-02-13 16:57:18 +0100 |
commit | c61391681b73ce5c4b60c832ccd5827ab4ff8465 (patch) | |
tree | d1fb0768018962b4254c8b7e21524283a8cf39eb | |
parent | 82328aa672fb4821c81259ec744678376b5fa6a3 (diff) | |
download | tree-c61391681b73ce5c4b60c832ccd5827ab4ff8465.tar.gz |
makefile fixes
-rw-r--r-- | tree/.gitignore | 3 | ||||
-rw-r--r-- | tree/Debug/objects.mk | 8 | ||||
-rw-r--r-- | tree/Debug/sources.mk | 27 |
3 files changed, 37 insertions, 1 deletions
diff --git a/tree/.gitignore b/tree/.gitignore index b55b925..f10990a 100644 --- a/tree/.gitignore +++ b/tree/.gitignore @@ -1 +1,2 @@ -/Debug/
\ No newline at end of file +/Debug/src
+/Debug/*.exe
\ No newline at end of file diff --git a/tree/Debug/objects.mk b/tree/Debug/objects.mk new file mode 100644 index 0000000..dc31e16 --- /dev/null +++ b/tree/Debug/objects.mk @@ -0,0 +1,8 @@ +################################################################################
+# Automatically-generated file. Do not edit!
+################################################################################
+
+USER_OBJS :=
+
+LIBS :=
+
diff --git a/tree/Debug/sources.mk b/tree/Debug/sources.mk new file mode 100644 index 0000000..2291deb --- /dev/null +++ b/tree/Debug/sources.mk @@ -0,0 +1,27 @@ +################################################################################
+# Automatically-generated file. Do not edit!
+################################################################################
+
+C_UPPER_SRCS :=
+CXX_SRCS :=
+C++_SRCS :=
+OBJ_SRCS :=
+CC_SRCS :=
+ASM_SRCS :=
+C_SRCS :=
+CPP_SRCS :=
+O_SRCS :=
+S_UPPER_SRCS :=
+CC_DEPS :=
+C++_DEPS :=
+EXECUTABLES :=
+OBJS :=
+C_UPPER_DEPS :=
+CXX_DEPS :=
+C_DEPS :=
+CPP_DEPS :=
+
+# Every subdirectory with source files must be described here
+SUBDIRS := \ +src \ +
|