-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
31 lines (24 loc) · 1.12 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: roblabla </var/spool/mail/roblabla> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2015/03/30 16:02:07 by roblabla #+# #+# #
# Updated: 2015/03/30 16:32:21 by roblabla ### ########.fr #
# #
# **************************************************************************** #
NAME = computor
all: $(NAME)
$(NAME):
npm i
echo '#!/bin/sh' > ./computor
echo 'node ./computor.js "$$@"' >> ./computor
chmod +x ./computor
clean:
rm -rf node_modules
fclean: clean
rm -f computor
re: fclean all
.PHONY: all clean fclean re