comparison 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
comparison
equal deleted inserted replaced
406:1a852266ba74 407:183e81c8f6c0
1 CC= gcc
2 CFLAGS= -O2
3 STD= sid-count
4 PROGS= ${STD}
5
6 all: ${PROGS}
7
8 ${STD}:
9 ${CC} ${CFLAGS} -o $@ $@.c
10
11 sid-count: sid-count.c
12
13 clean:
14 rm -f ${PROGS} *.o *errs *.out