FreeCalypso > hg > freecalypso-tools
annotate Makefile @ 619:f82551c77e58
libserial-newlnx: ASYNC_LOW_LATENCY patch reverted
Reports from Das Signal indicate that loadtools performance on Debian
is about the same as on Slackware, and that including or omitting the
ASYNC_LOW_LATENCY patch from Serg makes no difference. Because the
patch in question does not appear to be necessary, it is being reverted
until and unless someone other than Serg reports an actual real-world
system on which loadtools operation times are slowed compared to the
Mother's Slackware reference and on which Slackware-like performance
can be restored by setting the ASYNC_LOW_LATENCY flag.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 27 Feb 2020 01:09:48 +0000 |
parents | a87ac210727a |
children | 8ddb16a37273 |
rev | line source |
---|---|
471
8f3fe2d1fda5
Makefile hierarchy: allow CC and CFLAGS to be overridden from the top
Mychaela Falconia <falcon@freecalypso.org>
parents:
343
diff
changeset
|
1 CC= gcc |
8f3fe2d1fda5
Makefile hierarchy: allow CC and CFLAGS to be overridden from the top
Mychaela Falconia <falcon@freecalypso.org>
parents:
343
diff
changeset
|
2 CFLAGS= -O2 |
340
88fb194b4b61
top Makefile: uptools subdirectory added
Mychaela Falconia <falcon@freecalypso.org>
parents:
284
diff
changeset
|
3 PROGDIR=ffstools loadtools miscutil ringtools rvinterf uptools |
572
070b8c8f9be5
top Makefile: libpwon added as a dependency for loadtools
Mychaela Falconia <falcon@freecalypso.org>
parents:
479
diff
changeset
|
4 LIBDIR= libpwon librftab libserial |
249
d0a4c05d98dc
libserial hooked into the top level Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
219
diff
changeset
|
5 SUBDIR= ${PROGDIR} ${LIBDIR} |
0
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 |
473
90d7c360a614
main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
471
diff
changeset
|
7 INSTALL_PREFIX= /opt/freecalypso |
90d7c360a614
main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
471
diff
changeset
|
8 |
0
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 all: ${SUBDIR} |
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 |
284
556bb8c860fa
librftab added to top Makefile as dependency for ffstools and rvinterf
Mychaela Falconia <falcon@freecalypso.org>
parents:
249
diff
changeset
|
11 ffstools: librftab |
572
070b8c8f9be5
top Makefile: libpwon added as a dependency for loadtools
Mychaela Falconia <falcon@freecalypso.org>
parents:
479
diff
changeset
|
12 loadtools: libpwon libserial |
249
d0a4c05d98dc
libserial hooked into the top level Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
219
diff
changeset
|
13 miscutil: libserial |
580
ca28592b0b34
top Makefile: rvinterf is about to start using libpwon
Mychaela Falconia <falcon@freecalypso.org>
parents:
572
diff
changeset
|
14 rvinterf: libpwon librftab libserial |
343
940ab98efefd
top Makefile: uptools need libserial for atinterf
Mychaela Falconia <falcon@freecalypso.org>
parents:
340
diff
changeset
|
15 uptools: libserial |
249
d0a4c05d98dc
libserial hooked into the top level Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
219
diff
changeset
|
16 |
0
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 ${SUBDIR}: FRC |
479
f2a040324509
Makefile hierarchy: CFLAGS override-ability actually works now
Mychaela Falconia <falcon@freecalypso.org>
parents:
473
diff
changeset
|
18 cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" |
0
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 |
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 clean: FRC |
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 rm -f a.out core errs |
284
556bb8c860fa
librftab added to top Makefile as dependency for ffstools and rvinterf
Mychaela Falconia <falcon@freecalypso.org>
parents:
249
diff
changeset
|
22 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done |
0
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
23 |
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
24 install: FRC |
473
90d7c360a614
main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
471
diff
changeset
|
25 mkdir -p ${INSTALL_PREFIX} |
90d7c360a614
main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
471
diff
changeset
|
26 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \ |
90d7c360a614
main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
471
diff
changeset
|
27 INSTALL_PREFIX=${INSTALL_PREFIX} install); done |
604
a87ac210727a
top Makefile: install scripts
Mychaela Falconia <falcon@freecalypso.org>
parents:
580
diff
changeset
|
28 mkdir -p ${INSTALL_PREFIX}/scripts |
a87ac210727a
top Makefile: install scripts
Mychaela Falconia <falcon@freecalypso.org>
parents:
580
diff
changeset
|
29 install -c -m 644 scripts/* ${INSTALL_PREFIX}/scripts |
57
7cc2f2360922
top Makefile install rule: new packaging approach
Mychaela Falconia <falcon@freecalypso.org>
parents:
20
diff
changeset
|
30 if [ -d target-bin ]; then \ |
473
90d7c360a614
main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
471
diff
changeset
|
31 mkdir -p ${INSTALL_PREFIX}/target-bin; \ |
90d7c360a614
main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
471
diff
changeset
|
32 install -c -m 644 target-bin/* ${INSTALL_PREFIX}/target-bin; \ |
57
7cc2f2360922
top Makefile install rule: new packaging approach
Mychaela Falconia <falcon@freecalypso.org>
parents:
20
diff
changeset
|
33 fi |
0
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
34 |
e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
35 FRC: |