FreeCalypso > hg > freecalypso-sw
comparison ffstools/tiffs-wrappers/Makefile @ 244:48a254ca4493
TIFFS IVA: mokoffs wrapper written
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 27 Jan 2014 04:12:10 +0000 |
parents | |
children | 872d92404b6a |
comparison
equal
deleted
inserted
replaced
243:43642cf7c98c | 244:48a254ca4493 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= mokoffs | |
4 INSTBIN=/usr/local/bin | |
5 | |
6 MOKOFFS_OBJS= installpath.o mokoffs.o | |
7 | |
8 all: ${PROGS} | |
9 | |
10 mokoffs: ${MOKOFFS_OBJS} | |
11 ${CC} ${CFLAGS} -o $@ ${MOKOFFS_OBJS} | |
12 | |
13 install: ${PROGS} | |
14 mkdir -p ${INSTBIN} | |
15 install -c ${PROGS} ${INSTBIN} | |
16 | |
17 clean: | |
18 rm -f *.o *.out *errs ${PROGS} |