FreeCalypso > hg > themwi-ota-tools
annotate test/Makefile @ 10:2c022e0334c4
convert to new ThemWi configure and build system
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 21 May 2024 01:03:40 +0000 |
parents | c2de42994e57 |
children |
rev | line source |
---|---|
4
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 PROGS= ota-smspp-envelope |
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 LIBS= ../libutil/libutil.a |
10
2c022e0334c4
convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents:
4
diff
changeset
|
3 |
2c022e0334c4
convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents:
4
diff
changeset
|
4 include ../config.defs |
4
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 all: ${PROGS} |
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 |
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 ota-smspp-envelope: ota-smspp-envelope.o ${LIBS} |
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} |
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 |
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 install: |
10
2c022e0334c4
convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents:
4
diff
changeset
|
12 mkdir -p ${DESTDIR}${bindir} |
2c022e0334c4
convert to new ThemWi configure and build system
Mychaela Falconia <falcon@freecalypso.org>
parents:
4
diff
changeset
|
13 install -c ${PROGS} ${DESTDIR}${bindir} |
4
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 |
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 clean: |
c2de42994e57
ota-smspp-envelope utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 rm -f ${PROGS} *.o |