FreeCalypso > hg > ice1-trau-tester
comparison ater/Makefile @ 15:98ae717734d6
ater: starting skeleton
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 24 Jun 2024 04:01:38 +0000 |
parents | pcm/Makefile@ca351324187a |
children | 4ffe22f5b4b5 |
comparison
equal
deleted
inserted
replaced
14:99426da5603d | 15:98ae717734d6 |
---|---|
1 PROG= itt-ater-16 | |
2 OBJS= main.o read_ts.o record_ctrl.o user_cmd.o | |
3 LIBUTIL=../libutil/libutil.a | |
4 | |
5 include ../config.defs | |
6 | |
7 CPPFLAGS=${OSMO_INCLUDE} | |
8 OSMO_LINK=${OSMO_LPATH} ${OSMO_RPATH} ${OSMO_LIBS} | |
9 | |
10 all: ${PROG} | |
11 | |
12 ${OBJS}: globals.h | |
13 | |
14 ${PROG}: ${OBJS} ${LIBUTIL} | |
15 ${CC} -o $@ ${OBJS} ${LIBUTIL} ${OSMO_LINK} | |
16 | |
17 install: | |
18 mkdir -p ${DESTDIR}${bindir} | |
19 install -c -m 755 ${PROG} ${DESTDIR}${bindir} | |
20 | |
21 clean: | |
22 rm -f *.o ${PROG} errs |