diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-01-01 13:58:10 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-01-01 13:58:10 +0100 |
| commit | 83df2b3a49bd3f627ae304bb1529e27d9b2d988c (patch) | |
| tree | 3e1034909614101ebe27bc22ff4d56cea8d2baf9 /philo_one/Makefile | |
| parent | 632b7d81d6c7943e5e39812068c77df4681ebed2 (diff) | |
| download | philosophers-83df2b3a49bd3f627ae304bb1529e27d9b2d988c.tar.gz philosophers-83df2b3a49bd3f627ae304bb1529e27d9b2d988c.tar.bz2 philosophers-83df2b3a49bd3f627ae304bb1529e27d9b2d988c.zip | |
Fixing philo_one segfault because not checking correctly if finished
Diffstat (limited to 'philo_one/Makefile')
| -rw-r--r-- | philo_one/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/philo_one/Makefile b/philo_one/Makefile index e6e3ec1..76874a6 100644 --- a/philo_one/Makefile +++ b/philo_one/Makefile @@ -6,7 +6,7 @@ # By: cacharle <marvin@42.fr> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/11/24 05:50:15 by cacharle #+# #+# # -# Updated: 2020/12/30 13:55:45 by charles ### ########.fr # +# Updated: 2021/01/01 13:50:11 by charles ### ########.fr # # # # **************************************************************************** # @@ -16,7 +16,7 @@ MAKE = make --no-print-directory COMMONDIR = ../common CC = gcc -CCFLAGS = -g -I$(COMMONDIR) -Wall -Wextra #-Werror +CCFLAGS = -I$(COMMONDIR) -std=c99 -Wall -Wextra -Werror LDFLAGS = -lpthread -L$(COMMONDIR) -lphilocommon NAME = philo_one |
