From 54394620893f7245c7697a57d724d430d06b57d1 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 6 Oct 2020 15:57:29 +0200 Subject: Added pipeline ast and pipeline evaluation (not working when first command is infinite) --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1ea268f..0aabc5a 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/02/03 04:14:24 by cacharle #+# #+# # -# Updated: 2020/09/14 19:10:10 by charles ### ########.fr # +# Updated: 2020/10/02 12:52:19 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -25,7 +25,8 @@ OBJDIRS = $(shell find $(SRCDIR) -type d | sed 's/src/$(OBJDIR)/') INCLUDE = $(shell find $(INCLUDEDIR) -name "*.h") -SRC = $(shell find $(SRCDIR) -name "*.c") +SRC = $(shell find $(SRCDIR) -type f -name "*.c") + OBJ = $(SRC:$(SRCDIR)/%.c=$(OBJDIR)/%.o) -- cgit