comparison uptools/atinterf/Makefile @ 341:692dbc4c2f07

fcup-atinterf program written, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 04 Feb 2018 07:56:21 +0000
parents
children 90d7c360a614
comparison
equal deleted inserted replaced
340:88fb194b4b61 341:692dbc4c2f07
1 CC= gcc
2 CFLAGS= -O2
3 PROG= fcup-atinterf
4 LIB= ../../libserial/libserial.a
5 OBJS= ${PROG}.o ${LIB}
6 INSTBIN=/opt/freecalypso/bin
7
8 all: ${PROG}
9
10 ${PROG}: ${OBJS}
11 ${CC} ${CFLAGS} -o $@ ${OBJS}
12
13 install:
14 mkdir -p ${INSTBIN}
15 install -c ${PROG} ${INSTBIN}
16
17 clean:
18 rm -f ${PROG} *.o *errs *.out