aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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 =====================================#