FreeCalypso > hg > freecalypso-tools
view rvinterf/asyncshell/Makefile @ 14:3d148edb87c2
eliminated the dependency on OpenSSL for Pirelli IMEI DES decryption
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 03 Oct 2016 07:00:55 +0000 |
parents | 971906d7763d |
children | 43e4c95d148a |
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 tchplay.o tchrec.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}