diff pcm/Makefile @ 6:631f2db08538

pcm: implement print-rx and record commands
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 23 Jun 2024 18:53:01 +0000
parents 7233c10af3ad
children ca351324187a
line wrap: on
line diff
--- a/pcm/Makefile	Sun Jun 23 18:33:09 2024 +0000
+++ b/pcm/Makefile	Sun Jun 23 18:53:01 2024 +0000
@@ -1,5 +1,5 @@
 PROG=	itt-pcm-one
-OBJS=	main.o read_ts.o user_cmd.o
+OBJS=	main.o read_ts.o record_ctrl.o user_cmd.o
 LIBUTIL=../libutil/libutil.a
 
 include ../config.defs
@@ -9,6 +9,8 @@
 
 all:	${PROG}
 
+${OBJS}:	globals.h
+
 ${PROG}: ${OBJS} ${LIBUTIL}
 	${CC} -o $@ ${OBJS} ${LIBUTIL} ${OSMO_LINK}