diff ater/Makefile @ 20:5405c1573027

ater: implement file reading
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 24 Jun 2024 08:50:29 +0000
parents 61862af2247f
children 2ee910aa03c3
line wrap: on
line diff
--- a/ater/Makefile	Mon Jun 24 08:07:45 2024 +0000
+++ b/ater/Makefile	Mon Jun 24 08:50:29 2024 +0000
@@ -1,5 +1,7 @@
 PROG=	itt-ater-16
-OBJS=	main.o read_ts.o record_ctrl.o subslot_rx.o tx_func.o user_cmd.o
+OBJS=	main.o read_file.o read_ts.o record_ctrl.o subslot_rx.o tx_func.o \
+	user_cmd.o
+HDRS=	globals.h read_file.h submux.h
 LIBUTIL=../libutil/libutil.a
 
 include ../config.defs
@@ -9,7 +11,7 @@
 
 all:	${PROG}
 
-${OBJS}:	globals.h submux.h
+${OBJS}:	${HDRS}
 
 ${PROG}: ${OBJS} ${LIBUTIL}
 	${CC} -o $@ ${OBJS} ${LIBUTIL} ${OSMO_LINK}