diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mpffs/Makefile	Sun Jun 30 06:28:58 2013 +0000
@@ -0,0 +1,19 @@
+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}