aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2019-12-04 00:54:10 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2019-12-04 00:54:19 +0100
commit85d99571661e6483bf4ba6814dd4f97f6a39f8c5 (patch)
tree4621e2f27e4d78d3c5a49a3bbadec88155671b53 /Makefile
parentGood progress (diff)
downloadlowbat-gnu-85d99571661e6483bf4ba6814dd4f97f6a39f8c5.tar.gz
lowbat-gnu-85d99571661e6483bf4ba6814dd4f97f6a39f8c5.tar.bz2
lowbat-gnu-85d99571661e6483bf4ba6814dd4f97f6a39f8c5.tar.xz
lowbat-gnu-85d99571661e6483bf4ba6814dd4f97f6a39f8c5.tar.zst
lowbat-gnu-85d99571661e6483bf4ba6814dd4f97f6a39f8c5.zip
Better includes, better Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f48cb55..a6e035a 100644
--- a/Makefile
+++ b/Makefile
@@ -64,8 +64,7 @@ ${NAME}: ${OBJS}
@${MKDIR} ${TRGT_DIR}
${CC} ${CFLAGS} -o ${TRGT_DIR}${NAME} ${OBJS}
#------------------------------------------------------------------------------#
-all:
- @${MAKE} -j5 ${NAME}
+all: ${NAME}
#------------------------------------------------------------------------------#
install: all
mkdir -p $(DESTDIR)$(PREFIX)/bin
@@ -85,7 +84,6 @@ fclean: clean
${RM} ${TRGT_DIR}
#------------------------------------------------------------------------------#
re: fclean all
- ${RM} ${TRGT_DIR}
#------------------------------------------------------------------------------#
.PHONY: all lowbat clean fclean re install uninstall
#==================================== EOF =====================================#