aboutsummaryrefslogtreecommitdiff
path: root/cpp07/ex01/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cpp07/ex01/Makefile')
-rw-r--r--cpp07/ex01/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp07/ex01/Makefile b/cpp07/ex01/Makefile
index 45180bc..7bee119 100644
--- a/cpp07/ex01/Makefile
+++ b/cpp07/ex01/Makefile
@@ -6,7 +6,7 @@
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/04/14 19:48:34 by charles #+# #+# #
-# Updated: 2020/04/14 20:02:14 by charles ### ########.fr #
+# Updated: 2020/12/14 15:07:28 by cacharle ### ########.fr #
# #
# **************************************************************************** #
@@ -15,7 +15,7 @@ NAME = iter
CXX = clang++
CXXFLAGS = -std=c++98 -Wall -Wextra -Werror
-SRC = iter.cpp
+SRC = main.cpp
OBJ = $(SRC:.cpp=.o)
all: $(NAME)