aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2019-12-04 00:23:45 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2019-12-04 00:23:45 +0100
commit86f4eeac510753024dd94b69988bed700446ef37 (patch)
treee2fddd65127ad0eeef58f5eb4e5c5c57cd23ae39 /Makefile
parent.gitignore C++ update, doing some debug (diff)
downloadlowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.tar.gz
lowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.tar.bz2
lowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.tar.xz
lowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.tar.zst
lowbat-gnu-86f4eeac510753024dd94b69988bed700446ef37.zip
Better now
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4cf581f..f48cb55 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,8 @@ OPTIMIZE = -O2
CFLAGS = -Wall
CFLAGS += -Wextra
CFLAGS += -Werror
-CFLAGS += ${OPTIMIZE}
+#CFLAGS += ${OPTIMIZE}
+CFLAGS += ${DEBUG}
#------------------------------------------------------------------------------#
NAME = lowbat
#==============================================================================#
@@ -81,9 +82,10 @@ clean:
${RM} ${OBJS_DIR}
#------------------------------------------------------------------------------#
fclean: clean
+ ${RM} ${TRGT_DIR}
#------------------------------------------------------------------------------#
re: fclean all
-#------------------------------------------------------------------------------#
${RM} ${TRGT_DIR}
+#------------------------------------------------------------------------------#
.PHONY: all lowbat clean fclean re install uninstall
#==================================== EOF =====================================#