view mpffs/Makefile @ 32:0bf037ba4149

mpffs-ls: report the full chunk length of the /.journal file
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 30 Jun 2013 07:16:01 +0000
parents 9c3c5a572b57
children 660b0ea739f3
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	mpffs-ls
INSTDIR=/usr/local/bin

CAT_OBJS=	common.o cat.o
LS_OBJS=	common.o ls.o
XTR_OBJS=	common.o xtr.o

all:	${PROGS}

mpffs-ls:	${LS_OBJS}
	${CC} -o $@ ${LS_OBJS}

install:
	install -c ${PROGS} ${INSTDIR}

clean:
	rm -f *.o *.out *errs ${PROGS}