FreeCalypso > hg > freecalypso-sw
view rvinterf/asyncshell/Makefile @ 1027:1178befeda76
fc-shell: tch command framework started
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 30 May 2016 23:19:30 +0000 |
parents | 0511507bf6e7 |
children | 71bbddbcc6a1 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 -I../include PROG= fc-shell OBJS= at.o init.o main.o oneshot.o parse.o pktsort.o poweroff.o rxctl.o \ sendarb.o sendsp.o tchcmd.o usercmd.o LIBS= ../libasync/libasync.a ../libg23/libg23.a INSTBIN=/usr/local/bin all: ${PROG} ${PROG}: ${OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} install: ${PROG} mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROG}