-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
22 lines (18 loc) · 1006 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: crenfrow <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2017/04/28 18:13:59 by crenfrow #+# #+# #
# Updated: 2017/04/28 19:24:54 by kyork ### ########.fr #
# #
# **************************************************************************** #
CLI_NAME=j-grav
CC ?= clang
all: $(CLI_NAME)
$(CLI_NAME): src/main.c
$(CC) $^ -o $@
test:
./$(CLI_NAME) test