aboutsummaryrefslogtreecommitdiff
path: root/vendor/_unity/Makefile
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-10-11 14:53:20 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-10-11 14:53:20 +0200
commit39951f08a2938683d800c677c3a244e9ff8dbe19 (patch)
tree9321278f57c91d070e269fc2d2f95d4f2cb00fdf /vendor/_unity/Makefile
parent306a69eb9ae88813cf0be0aa3e001481e12220a1 (diff)
downloadlibft-39951f08a2938683d800c677c3a244e9ff8dbe19.tar.gz
libft-39951f08a2938683d800c677c3a244e9ff8dbe19.tar.bz2
libft-39951f08a2938683d800c677c3a244e9ff8dbe19.zip
Removing none c,h files for correction
Diffstat (limited to 'vendor/_unity/Makefile')
-rw-r--r--vendor/_unity/Makefile41
1 files changed, 0 insertions, 41 deletions
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 <marvin@42.fr> +#+ +:+ +#+ #
-# +#+#+#+#+#+ +#+ #
-# 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