FreeCalypso > hg > freecalypso-tools
view lcdemu/Makefile @ 61:c10a65f7563e
target-utils/libtiffs: find the root inode even if it's preceded
by some blank entries
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 26 Oct 2016 16:06:28 +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}