view pcm/Makefile @ 36:e4a0b4a61649

top Makefile: add pcm-br
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 28 Aug 2024 05:02:29 +0000
parents ca351324187a
children
line wrap: on
line source

PROG=	itt-pcm-one
OBJS=	main.o pcm_tx.o read_ts.o record_ctrl.o user_cmd.o
LIBUTIL=../libutil/libutil.a

include ../config.defs

CPPFLAGS=${OSMO_INCLUDE}
OSMO_LINK=${OSMO_LPATH} ${OSMO_RPATH} ${OSMO_LIBS}

all:	${PROG}

${OBJS}:	globals.h

${PROG}: ${OBJS} ${LIBUTIL}
	${CC} -o $@ ${OBJS} ${LIBUTIL} ${OSMO_LINK}

install:
	mkdir -p ${DESTDIR}${bindir}
	install -c -m 755 ${PROG} ${DESTDIR}${bindir}

clean:
	rm -f *.o ${PROG} errs