view lcdemu/Makefile @ 323:886f65760d09

fc-tmsync: added pirelli-vbat-cal command to read Pirelli's ADC calibration
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 18 Dec 2017 21:00:46 +0000
parents e7502631a0f9
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	fc-lcdemu
OBJS=	globals.o main.o process.o window.o ximage.o xrm.o
INSTBIN=/usr/local/bin

all:	${PROG}

${PROG}: ${OBJS}
	${CC} ${CFLAGS} -o $@ ${OBJS} -lX11

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

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