view ffstools/tiffs-rd/Makefile @ 895:1fa8ada742ff

gsm-fw rfcap default: triband for the Pirelli target
author Space Falcon <falcon@ivan.Harhan.ORG>
date Tue, 30 Jun 2015 19:47:12 +0000
parents 10afa4d39a7b
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	tiffs
OBJS=	basics.o cat.o globals.o inode.o ls.o main.o object.o tree.o xtr.o
HDRS=	globals.h pathname.h struct.h types.h
INSTBIN=/usr/local/bin

all:	${PROG}

${PROG}:	${OBJS}
	${CC} -o $@ ${OBJS}

${OBJS}:	${HDRS}

install:	${PROG}
	mkdir -p ${INSTBIN}
	install -c ${PROG} ${INSTBIN}

clean:
	rm -f ${PROG} *.o *.out *errs