aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-29 13:29:32 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-29 13:29:32 +0100
commitd04e943342182b4d66a23c8bc23e78a8db9bcba7 (patch)
treecad346c515e76dbc657355a5e2ba581cab93b9fc /Makefile
parent31b0a300c535f5a0ff266dda69806f2b8d76dd67 (diff)
downloadcomputorv1-d04e943342182b4d66a23c8bc23e78a8db9bcba7.tar.gz
computorv1-d04e943342182b4d66a23c8bc23e78a8db9bcba7.tar.bz2
computorv1-d04e943342182b4d66a23c8bc23e78a8db9bcba7.zip
Basic lexer
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 89e8add..48f7007 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/02/29 11:54:31 by cacharle #+# #+# #
-# Updated: 2020/02/29 12:00:11 by cacharle ### ########.fr #
+# Updated: 2020/02/29 12:01:42 by cacharle ### ########.fr #
# #
# **************************************************************************** #
@@ -18,7 +18,7 @@ SRC = $(shell find . -name "*.hs")
all: $(NAME)
-$(NAME):
+$(NAME): $(SRC)
$(CC) -o $(NAME) $(SRC)
clean: