view blobstat/Makefile @ 371:c7514c8b5b41

pirelli/headset: plug insertion detection figured out
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 14 Jun 2021 01:33:48 +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}