FreeCalypso > hg > freecalypso-tools
comparison ffstools/tiffs-wrappers/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 | a4afdada80fc |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:e7502631a0f9 |
|---|---|
| 1 CC= gcc | |
| 2 CFLAGS= -O2 | |
| 3 PROGS= mokoffs pirffs | |
| 4 INSTBIN=/usr/local/bin | |
| 5 | |
| 6 MOKOFFS_OBJS= installpath.o mokoffs.o | |
| 7 PIRFFS_OBJS= installpath.o pirffs.o | |
| 8 | |
| 9 all: ${PROGS} | |
| 10 | |
| 11 mokoffs: ${MOKOFFS_OBJS} | |
| 12 ${CC} ${CFLAGS} -o $@ ${MOKOFFS_OBJS} | |
| 13 | |
| 14 pirffs: ${PIRFFS_OBJS} | |
| 15 ${CC} ${CFLAGS} -o $@ ${PIRFFS_OBJS} | |
| 16 | |
| 17 install: ${PROGS} | |
| 18 mkdir -p ${INSTBIN} | |
| 19 install -c ${PROGS} ${INSTBIN} | |
| 20 | |
| 21 clean: | |
| 22 rm -f *.o *.out *errs ${PROGS} |
