view blobstat/Makefile @ 357:ebb9377cf52c

fluid-mnf/machine.c: read operation time report message changed to match the reality of the number being in ms, not s
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 13 Mar 2020 20:56:47 +0000
parents ff2a6433687f
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	blobstat
OBJS=	globals.o grokmap.o main.o output.o readclass.o

all:	${PROG}

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

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