view lcdemu/Makefile @ 8:0efa0f4081a0

README: added blurb about hex dumps in rvinterf output impairing usability
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Mar 2018 04:44:26 +0000
parents bff57443b0f7
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=/opt/freecalypso/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}