FreeCalypso > hg > freecalypso-tools
comparison 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 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e7502631a0f9 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= fc-lcdemu | |
4 OBJS= globals.o main.o process.o window.o ximage.o xrm.o | |
5 INSTBIN=/usr/local/bin | |
6 | |
7 all: ${PROG} | |
8 | |
9 ${PROG}: ${OBJS} | |
10 ${CC} ${CFLAGS} -o $@ ${OBJS} -lX11 | |
11 | |
12 install: ${PROG} | |
13 mkdir -p ${INSTBIN} | |
14 install -c ${PROG} ${INSTBIN} | |
15 | |
16 clean: | |
17 rm -f *.o *.out *errs ${PROG} |