view lcdemu/Makefile @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author |
Mychaela Falconia <falcon@freecalypso.org> |
date |
Sat, 11 Jun 2016 00:13:35 +0000 (2016-06-11) |
parents |
|
children |
|
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}