FreeCalypso > hg > freecalypso-tools
comparison uptools/atcmd/Makefile @ 348:64dcbabd48ca
uptools/atcmd framework started
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 04 Feb 2018 18:38:20 +0000 |
parents | |
children | 02d6c8469535 |
comparison
equal
deleted
inserted
replaced
347:dd5bab5156bf | 348:64dcbabd48ca |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= fcup-at | |
4 INSTBIN=/opt/freecalypso/bin | |
5 | |
6 LIBCODING= ../libcoding/libcoding.a | |
7 | |
8 ATCMD_OBJS= atcmd.o atinterf.o | |
9 | |
10 all: ${PROGS} | |
11 | |
12 fcup-at: ${ATCMD_OBJS} | |
13 ${CC} ${CFLAGS} -o $@ ${ATCMD_OBJS} | |
14 | |
15 install: ${PROGS} | |
16 mkdir -p ${INSTBIN} | |
17 install -c ${PROGS} ${INSTBIN} | |
18 | |
19 clean: | |
20 rm -f *.o *.out *errs ${PROGS} |