diff mpffs/Makefile @ 36:390be89892c4

mpffs-xtr ported over
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 30 Jun 2013 17:24:21 +0000
parents ee4c761187cf
children
line wrap: on
line diff
--- a/mpffs/Makefile	Sun Jun 30 16:55:19 2013 +0000
+++ b/mpffs/Makefile	Sun Jun 30 17:24:21 2013 +0000
@@ -1,6 +1,6 @@
 CC=	gcc
 CFLAGS=	-O2
-PROGS=	mpffs-cat mpffs-dbgls mpffs-ls
+PROGS=	mpffs-cat mpffs-dbgls mpffs-ls mpffs-xtr
 INSTDIR=/usr/local/bin
 
 CAT_OBJS=	common.o cat.o find.o
@@ -19,6 +19,9 @@
 mpffs-ls:	${LS_OBJS}
 	${CC} -o $@ ${LS_OBJS}
 
+mpffs-xtr:	${XTR_OBJS}
+	${CC} -o $@ ${XTR_OBJS}
+
 install:
 	install -c ${PROGS} ${INSTDIR}