Skip to content

Commit

Permalink
updated libft make
Browse files Browse the repository at this point in the history
  • Loading branch information
Iipal committed Feb 20, 2019
1 parent e680816 commit e98c576
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion libft/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,20 @@
# By: tmaluh <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2018/10/25 11:27:37 by tmaluh #+# #+# #
# Updated: 2019/02/20 17:51:58 by tmaluh ### ########.fr #
# Updated: 2019/02/20 17:54:46 by tmaluh ### ########.fr #
# #
# **************************************************************************** #

NAME = libft.a

UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
ECHO = echo -e
endif
ifeq ($(UNAME_S),Darwin)
ECHO = echo
endif

CC = gcc
LC = ar rcs

Expand Down

0 comments on commit e98c576

Please sign in to comment.