From dd0c485ac4975b7dd6d2e230213be1da50d0a065 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 18 Sep 2020 16:39:52 +0200 Subject: Removing unnecessary stuff --- vendor/_unity/Makefile | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 vendor/_unity/Makefile (limited to 'vendor/_unity/Makefile') diff --git a/vendor/_unity/Makefile b/vendor/_unity/Makefile deleted file mode 100644 index d9700ea..0000000 --- a/vendor/_unity/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -# **************************************************************************** # -# # -# ::: :::::::: # -# Makefile :+: :+: :+: # -# +:+ +:+ +:+ # -# By: cacharle +#+ +:+ +#+ # -# +#+#+#+#+#+ +#+ # -# Created: 2020/01/31 07:27:12 by cacharle #+# #+# # -# Updated: 2020/01/31 08:39:24 by cacharle ### ########.fr # -# # -# **************************************************************************** # - -CC = gcc -CCFLAGS = -Iinclude -Wall -Wextra -Werror - -NAME = libunity.a - -INCLUDE = $(shell find include -type f -name "*.h") -SRC = $(shell find src -type f -name "*.c") -OBJ = $(SRC:.c=.o) - -.PHONY: all -all: $(NAME) - -$(NAME): $(OBJ) - @echo "Unity: Linking: $@" - @ar rcs $@ $^ - -%.o: %.c $(INCLUDE) - @echo "Unity: Compiling: $@" - @$(CC) $(CCFLAGS) -c -o $@ $< - -clean: - @echo "Unity: Removing objects" - @rm -f $(OBJ) - -fclean: clean - @echo "Unity: Removing: $(NAME)" - @rm -f $(NAME) - -re: fclean all -- cgit