comparison ffstools/tiffs-rd/Makefile @ 231:5ceacdbd4490

tiffs IVA: finds the root inode
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 26 Jan 2014 08:11:42 +0000
parents 24ed817dd25d
children ae9ff2d1e3da
comparison
equal deleted inserted replaced
230:ffaa033e7643 231:5ceacdbd4490
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROG= tiffs 3 PROG= tiffs
4 OBJS= basics.o main.o 4 OBJS= basics.o globals.o inode.o main.o
5 HDRS= globals.h pathname.h struct.h types.h
5 6
6 all: ${PROG} 7 all: ${PROG}
7 8
8 ${PROG}: ${OBJS} 9 ${PROG}: ${OBJS}
9 ${CC} -o $@ ${OBJS} 10 ${CC} -o $@ ${OBJS}
10 11
12 ${OBJS}: ${HDRS}
13
11 clean: 14 clean:
12 rm -f ${PROG} *.o *.out *errs 15 rm -f ${PROG} *.o *.out *errs