diff 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
line wrap: on
line diff
--- a/ffstools/tiffs-rd/Makefile	Sun Jan 26 00:34:22 2014 +0000
+++ b/ffstools/tiffs-rd/Makefile	Sun Jan 26 08:11:42 2014 +0000
@@ -1,12 +1,15 @@
 CC=	gcc
 CFLAGS=	-O2
 PROG=	tiffs
-OBJS=	basics.o main.o
+OBJS=	basics.o globals.o inode.o main.o
+HDRS=	globals.h pathname.h struct.h types.h
 
 all:	${PROG}
 
 ${PROG}: ${OBJS}
 	${CC} -o $@ ${OBJS}
 
+${OBJS}: ${HDRS}
+
 clean:
 	rm -f ${PROG} *.o *.out *errs