view abis/Makefile @ 31:cd7448724d74

top Makefile: add abis program subdir
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 13 Aug 2024 21:44:30 +0000
parents 5dd30224b70a
children
line wrap: on
line source

PROG=	itt-abis-16
OBJS=	dl_frames.o main.o read_ts.o record_ctrl.o subslot_rx.o tx_func.o \
	user_cmd.o
HDRS=	dl_frames.h globals.h submux.h
LIBUTIL=../libutil/libutil.a

include ../config.defs

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

all:	${PROG}

${OBJS}:	${HDRS}

${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