comparison 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
comparison
equal deleted inserted replaced
19:1e375472d5a5 20:5405c1573027
1 PROG= itt-ater-16 1 PROG= itt-ater-16
2 OBJS= main.o read_ts.o record_ctrl.o subslot_rx.o tx_func.o user_cmd.o 2 OBJS= main.o read_file.o read_ts.o record_ctrl.o subslot_rx.o tx_func.o \
3 user_cmd.o
4 HDRS= globals.h read_file.h submux.h
3 LIBUTIL=../libutil/libutil.a 5 LIBUTIL=../libutil/libutil.a
4 6
5 include ../config.defs 7 include ../config.defs
6 8
7 CPPFLAGS=${OSMO_INCLUDE} 9 CPPFLAGS=${OSMO_INCLUDE}
8 OSMO_LINK=${OSMO_LPATH} ${OSMO_RPATH} ${OSMO_LIBS} 10 OSMO_LINK=${OSMO_LPATH} ${OSMO_RPATH} ${OSMO_LIBS}
9 11
10 all: ${PROG} 12 all: ${PROG}
11 13
12 ${OBJS}: globals.h submux.h 14 ${OBJS}: ${HDRS}
13 15
14 ${PROG}: ${OBJS} ${LIBUTIL} 16 ${PROG}: ${OBJS} ${LIBUTIL}
15 ${CC} -o $@ ${OBJS} ${LIBUTIL} ${OSMO_LINK} 17 ${CC} -o $@ ${OBJS} ${LIBUTIL} ${OSMO_LINK}
16 18
17 install: 19 install: