annotate tfo/Makefile @ 16:2daf8f209707

tcsm2-notes: initial observations on boards
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 29 May 2024 02:26:13 +0000
parents 98c0881c2af0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 STD= find-is-hdr
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 PROGS= ${STD}
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 all: ${PROGS}
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 ${STD}:
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 ${CC} ${CFLAGS} -o $@ $@.c
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 find-is-hdr: find-is-hdr.c
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 clean:
98c0881c2af0 tfo/find-is-hdr: move here from freecalypso-reveng
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 rm -f ${PROGS} *.o *errs *.out