view 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 source

CC=	gcc
CFLAGS=	-O2
PROG=	tiffs
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