aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-17 18:40:13 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-17 18:40:13 +0200
commit3eb2b353ccce59f0b09b5b3c56caac5be6bbbb24 (patch)
tree0fab45ba8a0b1bce3c85241e477a15fff70f5c73 /Makefile
parentaaaaaaaaa ok (diff)
downloadlowbat-bsd-3eb2b353ccce59f0b09b5b3c56caac5be6bbbb24.tar.gz
lowbat-bsd-3eb2b353ccce59f0b09b5b3c56caac5be6bbbb24.tar.bz2
lowbat-bsd-3eb2b353ccce59f0b09b5b3c56caac5be6bbbb24.tar.xz
lowbat-bsd-3eb2b353ccce59f0b09b5b3c56caac5be6bbbb24.tar.zst
lowbat-bsd-3eb2b353ccce59f0b09b5b3c56caac5be6bbbb24.zip
in progress
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e4a5f76..6dfe8e6 100644
--- a/Makefile
+++ b/Makefile
@@ -22,6 +22,7 @@ C_SRCS += ${C_SRCS_DIR}/jo_n_notify.c
C_OBJS = ${C_SRCS:.c=.o}
# -------------------------------------------------------------------------------------- #
A_SRCS = ${A_SRCS_DIR}/jo_r_lowbat.asm
+A_SRCS += ${A_SRCS_DIR}/jo_r_loop.asm
A_SRCS += ${A_SRCS_DIR}/jo_c_args.asm
A_SRCS += ${A_SRCS_DIR}/jo_f_status.asm
A_SRCS += ${A_SRCS_DIR}/jo_f_percent.asm
@@ -87,7 +88,7 @@ ${TARGET}: ${A_OBJS} ${C_OBJS}
# -------------------------------------------------------------------------------------- #
depend:
${CC} ${CINCS} -E -MM ${C_SRCS} > .depend
- ${SED} 's/^/${C_SRCS_DIR}\//' .depend > .depend.tmp
+ ${SED} 's/^jo/${C_SRCS_DIR}\/jo/' .depend > .depend.tmp
${MV} .depend.tmp .depend
# -------------------------------------------------------------------------------------- #
all: