annotate dspanal/Makefile @ 408:14302e075f37 default tip

hr-bits: further conditionalize SID-1-diff
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 22 Jul 2024 10:06:38 +0000
parents f8344bc4fd61
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
203
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
1 CC= gcc
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
2 CFLAGS= -O2
308
f8344bc4fd61 dspanal: char2coff utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 307
diff changeset
3 SIMPLE= char2bin patchanal
f8344bc4fd61 dspanal: char2coff utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 307
diff changeset
4 CMPLX= char2coff
f8344bc4fd61 dspanal: char2coff utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 307
diff changeset
5 PROGS= ${SIMPLE} ${CMPLX}
203
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
6
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
7 all: ${PROGS}
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
8
308
f8344bc4fd61 dspanal: char2coff utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 307
diff changeset
9 ${SIMPLE}:
203
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
10 ${CC} ${CFLAGS} -o $@ $@.c
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
11
307
8e816bba2ff7 dspanal: char2bin utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 203
diff changeset
12 char2bin: char2bin.c
203
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
13 patchanal: patchanal.c
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
14
308
f8344bc4fd61 dspanal: char2coff utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 307
diff changeset
15 char2coff: char2coff.o charparse.o coffout.o
f8344bc4fd61 dspanal: char2coff utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 307
diff changeset
16 ${CC} ${CFLAGS} -o $@ $^
f8344bc4fd61 dspanal: char2coff utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 307
diff changeset
17
203
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
18 clean:
b893ea27e081 dspanal/patchanal.c written, insight gained
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
diff changeset
19 rm -f ${PROGS} *.o *errs *.out