FreeCalypso > hg > freecalypso-tools
view ffstools/tiffs-rd/Makefile @ 12:869ce9f61a67
fc-fsio format command: buglet in the usage error handling
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 03 Oct 2016 05:54:21 +0000 |
parents | e7502631a0f9 |
children | a4afdada80fc |
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