comparison 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
comparison
equal deleted inserted replaced
29:e96d6862cec0 30:9c3c5a572b57
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= mpffs-ls
4 INSTDIR=/usr/local/bin
5
6 CAT_OBJS= common.o cat.o
7 LS_OBJS= common.o ls.o
8 XTR_OBJS= common.o xtr.o
9
10 all: ${PROGS}
11
12 mpffs-ls: ${LS_OBJS}
13 ${CC} -o $@ ${LS_OBJS}
14
15 install:
16 install -c ${PROGS} ${INSTDIR}
17
18 clean:
19 rm -f *.o *.out *errs ${PROGS}