diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-15 17:36:37 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-15 17:36:37 +0100 |
commit | a334dd6a27a023fc2614e478f9e98258f37818dc (patch) | |
tree | 012ceb5cae079a171f4c8aac77521ba4853fdb8f /Makefile | |
parent | Better Makefiles again (diff) | |
download | 42-cub3d-a334dd6a27a023fc2614e478f9e98258f37818dc.tar.gz 42-cub3d-a334dd6a27a023fc2614e478f9e98258f37818dc.tar.bz2 42-cub3d-a334dd6a27a023fc2614e478f9e98258f37818dc.tar.xz 42-cub3d-a334dd6a27a023fc2614e478f9e98258f37818dc.tar.zst 42-cub3d-a334dd6a27a023fc2614e478f9e98258f37818dc.zip |
Even better Makefiles
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -137,7 +137,10 @@ CFLAGS += -Wall CFLAGS += -Wextra CFLAGS += -Werror CFLAGS += -pedantic -CFLAGS += ${DEBUG} +#--------------------------------------------------------------------------------------------------# +ifdef DEBUG + CFLAGS += ${DEBUG} +endif #--------------------------------------------------------------------------------------------------# ifdef ASAN CFLAGS += ${DEBUG} |