annotate Makefile @ 11:b4b4a822286c default tip

add INSTALL
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 21 May 2024 01:06:04 +0000
parents 2c022e0334c4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
a33d4d8079d2 ota-set-msisdn utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 5
diff changeset
1 PROGDIR=gen smswrap test
5
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 LIBDIR= libutil
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 SUBDIR= ${PROGDIR} ${LIBDIR}
10
2c022e0334c4 convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
4 DESTDIR=
5
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 all: ${SUBDIR}
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
7
a33d4d8079d2 ota-set-msisdn utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 5
diff changeset
8 gen: libutil
5
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 smswrap: libutil
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 test: libutil
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
10
2c022e0334c4 convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
12 ${SUBDIR}: FRC config.defs
5
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 cd $@; ${MAKE} ${MFLAGS}
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14
10
2c022e0334c4 convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
15 config.defs:
2c022e0334c4 convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
16 @echo 'You must run ./configure before make'
2c022e0334c4 convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
17 @false
2c022e0334c4 convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
18
5
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 clean: FRC
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 rm -f a.out core errs
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 install: FRC
10
2c022e0334c4 convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
24 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \
2c022e0334c4 convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents: 7
diff changeset
25 DESTDIR=${DESTDIR} install); done
5
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26
acb4d86e6ed7 top Makefile added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
27 FRC: