FreeCalypso > hg > ice1-trau-tester
view ater/Makefile @ 37:26c9535df39e
rm abis subdir: moved to e1-fake-trau repository
The present code repository is meant to contain code for talking
to a TRAU DUT, hence the name ice1-trau-tester. The different and
separate function of talking to an E1 BTS (Abis instead of Ater,
and in the opposite role) was never in scope for this project, but
that code got added here in a haste when the InSite BTS arrived
while the TRAU bring-up was still blocked. Now that we have our
Nokia TCSM2 system working and are doing TRAU experiments, let's
keep the code clean.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 29 Aug 2024 19:02:02 +0000 |
parents | 2742dbea95f1 |
children | 349fb785a414 |
line wrap: on
line source
PROG= itt-ater-16 OBJS= activate.o main.o out_frame.o play_cmd.o read_file.o read_ts.o \ record_ctrl.o subslot_rx.o tx_func.o user_cmd.o HDRS= globals.h out_frame.h read_file.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