view miscutil/Makefile @ 596:a8121805b6d0

gsm-fw/L1/cfile/l1_async.c: call to l1a_mmi_outen_cfg_process() needs to be conditionalised on AUDIO_TASK
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 17 Aug 2014 06:58:27 +0000
parents 3822f3b198d4
children 813287f7169c
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	fc-serterm imei-luhn
INSTBIN=/usr/local/bin

all:	${PROGS}

SERTERM_OBJS=	fc-serterm.o openport.o ttypassthru.o

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

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

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

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

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