FreeCalypso > hg > freecalypso-sw
view ffstools/tiffs-wrappers/Makefile @ 865:f5affe83ba2d
lldbg hack (poor girl's substitute for JTAG) implemented
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Fri, 15 May 2015 00:02:03 +0000 |
parents | 872d92404b6a |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= mokoffs pirffs INSTBIN=/usr/local/bin MOKOFFS_OBJS= installpath.o mokoffs.o PIRFFS_OBJS= installpath.o pirffs.o all: ${PROGS} mokoffs: ${MOKOFFS_OBJS} ${CC} ${CFLAGS} -o $@ ${MOKOFFS_OBJS} pirffs: ${PIRFFS_OBJS} ${CC} ${CFLAGS} -o $@ ${PIRFFS_OBJS} install: ${PROGS} mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROGS}