view mpffs/Makefile @ 30:9c3c5a572b57

mpffs-ls works with the length code stubbed out
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 30 Jun 2013 06:28:58 +0000
parents
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}