FreeCalypso > hg > themwi-system-sw
annotate libsip/Makefile @ 70:47976db01894
sip-in/sip_log.c: extern declaration of global variable
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 19 Sep 2022 21:30:33 -0800 |
parents | 9f045dcff60e |
children | 9ca6f0708237 |
rev | line source |
---|---|
40
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 CFLAGS= -O2 |
54
9f045dcff60e
libsip: SDP generation implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
53
diff
changeset
|
3 OBJS= get_header.o grok_from.o out_msg.o primary_parse.o req_supp.o sdp_gen.o\ |
53
2423f3aac4ce
libsip: SDP parsing implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
51
diff
changeset
|
4 sdp_parse.o uas_basic.o uri_utils.o |
40
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 LIB= libsip.a |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 all: ${LIB} |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 ${LIB}: ${OBJS} |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 ar rcu $@ ${OBJS} |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 ranlib $@ |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 clean: |
77d980126efd
libsip started with primary parsing function
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 rm -f *.[oa] errs |