annotate libsip/Makefile @ 49:dec31b1a8b96

sip-in: check Require and Supported
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 06 Sep 2022 22:57:16 -0800
parents 5427b26525cd
children 36a30349b490
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
49
dec31b1a8b96 sip-in: check Require and Supported
Mychaela Falconia <falcon@freecalypso.org>
parents: 46
diff changeset
3 OBJS= get_header.o out_msg.o primary_parse.o req_supp.o uas_basic.o \
dec31b1a8b96 sip-in: check Require and Supported
Mychaela Falconia <falcon@freecalypso.org>
parents: 46
diff changeset
4 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