view miscutil/Makefile @ 407:19e5a3e2f9c0

fcup-settime: moved time() retrieval a little closer to the output A fundamental problem with all simple time transfer tools is that there is always some delay between the time retrieval on the source system and that transmitted time being set on the destination, and the resulting time on the destination system is off by that delay amount. This delay cannot be fully eliminated when working in a simple environment like ours, but we should make our best effort to minimize it. In the present case, moving the atinterf_init() call before the time() retrieval should make a teensy-tiny improvement.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 11 Aug 2018 21:52:17 +0000
parents fb577c31e960
children a5dab452be0d
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	fc-fr2tch fc-gsm2vm fc-rgbconv fc-serterm fc-tch2fr fc-vm2hex imei-luhn
SCRIPTS=c139explore pirexplore
INSTBIN=/opt/freecalypso/bin

all:	${PROGS}

FR2TCH_OBJS=	fc-fr2tch.o gsm0610.o
GSM2VM_OBJS=	fc-gsm2vm.o gsm0610.o
TCH2FR_OBJS=	fc-tch2fr.o gsm0610.o
SERTERM_OBJS=	fc-serterm.o ttypassthru.o ../libserial/libserial.a

fc-fr2tch:	${FR2TCH_OBJS}
	${CC} ${CFLAGS} -o $@ ${FR2TCH_OBJS}

fc-gsm2vm:	${GSM2VM_OBJS}
	${CC} ${CFLAGS} -o $@ ${GSM2VM_OBJS}

fc-rgbconv:	fc-rgbconv.c
	${CC} ${CFLAGS} -o $@ $@.c

fc-serterm:	${SERTERM_OBJS}
	${CC} ${CFLAGS} -o $@ ${SERTERM_OBJS}

ttypassthru.o:	../loadtools/ttypassthru.c
	${CC} ${CFLAGS} -c -o $@ $<

fc-tch2fr:	${TCH2FR_OBJS}
	${CC} ${CFLAGS} -o $@ ${TCH2FR_OBJS}

fc-vm2hex:	fc-vm2hex.c
	${CC} ${CFLAGS} -o $@ $@.c

imei-luhn:	imei-luhn.c
	${CC} ${CFLAGS} -o $@ $@.c

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${SCRIPTS} ${INSTBIN}

clean:
	rm -f ${PROGS} *.o *errs *.out