comparison ater8/Makefile @ 42:ff94d7fc5891

new program itt-ater-8
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 30 Aug 2024 19:02:42 +0000
parents ater/Makefile@2742dbea95f1
children
comparison
equal deleted inserted replaced
41:50a72d4ff498 42:ff94d7fc5891
1 PROG= itt-ater-8
2 OBJS= activate.o main.o out_frame.o play_cmd.o read_file.o read_ts.o \
3 record_ctrl.o subslot_rx.o tx_func.o user_cmd.o
4 HDRS= globals.h out_frame.h read_file.h submux.h
5 LIBUTIL=../libutil/libutil.a
6 LIBHR= ../libhr/libhr.a
7
8 include ../config.defs
9
10 CPPFLAGS=${OSMO_INCLUDE}
11 OSMO_LINK=${OSMO_LPATH} ${OSMO_RPATH} ${OSMO_LIBS}
12 LOCAL_LIBS=${LIBUTIL} ${LIBHR}
13
14 all: ${PROG}
15
16 ${OBJS}: ${HDRS}
17
18 ${PROG}: ${OBJS} ${LOCAL_LIBS}
19 ${CC} -o $@ ${OBJS} ${LOCAL_LIBS} ${OSMO_LINK}
20
21 install:
22 mkdir -p ${DESTDIR}${bindir}
23 install -c -m 755 ${PROG} ${DESTDIR}${bindir}
24
25 clean:
26 rm -f *.o ${PROG} errs