-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (27 loc) · 877 Bytes
/
Makefile
File metadata and controls
42 lines (27 loc) · 877 Bytes
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
32
33
34
35
36
37
38
##########################################################
# #
# Makefile for lemon #
# #
# First compiles the library for use in the project #
# Before compiling the programs lemon #
# #
##########################################################
all:
@(cd Libft; $(MAKE) all)
@(cd src; $(MAKE) all)
clean:
@$(MAKE) -C ./Libft clean
fcleanlib:
@$(MAKE) -C ./Libft fclean
fcleanlemon:
@$(MAKE) -C ./src fclean
fcleanvisualiser:
@$(MAKE) -C ./vis fclean
fclean: fcleanlib fcleanlemon fcleanvisualiser
@rm -f output.txt
re: fclean all
visualiser:
@(cd Libft; $(MAKE) all)
@(cd vis; $(MAKE) all)
lem-in-time:
@$(MAKE) -C ./src lem-in-time