view hr-bits/Makefile @ 407:183e81c8f6c0

hr-bits: sid-count program written
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 22 Jul 2024 10:00:58 +0000
parents miscprog/Makefile@4307b57229d3
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
STD=	sid-count
PROGS=	${STD}

all:	${PROGS}

${STD}:
	${CC} ${CFLAGS} -o $@ $@.c

sid-count:	sid-count.c

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