ce101605e597b4bd6f3d19594f3a78f5041a125e
[ric-plt/resource-status-manager.git] / RSM / 3rdparty / asn1codec / Makefile
1 ##############################################################################
2 #
3 #   Copyright (c) 2019 AT&T Intellectual Property.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 ##############################################################################
18 CFLAGS=-Wall -Wpedantic -std=c11 -Og  -I./inc -I./src -I./e2ap_engine -DASN_DISABLE_OER_SUPPORT  -DASN_PDU_COLLECTION -D_POSIX_C_SOURCE=200809L -ggdb
19 export CFLAGS
20 OBJDIR=lib
21 LIB=$(OBJDIR)/libe2ap_codec.a
22 LIBSRC=asn1codec_utils.c resource_status_request_wrapper.c
23 LIBOBJ=$(addprefix $(OBJDIR)/,$(LIBSRC:.c=.o))
24 TESTUNPACKXER=tests/unpack_xer
25 TESTRESOURCESTATUSREQUEST=tests/resource_status_request_wrapper_test
26
27 .PHONY: all clean e2ap_engine
28
29 all: $(LIB) $(TESTUNPACKXER) $(TESTRESOURCESTATUSREQUEST)
30
31 e2ap_engine/libasncodec.a:
32         cd e2ap_engine/ && make -f converter-example.mk
33
34 $(OBJDIR)/%.o: src/%.c e2ap_engine/*.h
35         mkdir -p $(dir $@)
36         $(CC) $(CFLAGS) -c $< -o $@
37
38 $(LIB): e2ap_engine/libasncodec.a $(LIBOBJ) 
39         $(AR) -crv $(LIB) $(LIBOBJ) 
40
41 $(TESTUNPACKXER): % : $(LIB) src/%.c
42         mkdir -p $(dir $@)
43         $(CC) $(CFLAGS) src/$@.c -o $@ $(LIB)  e2ap_engine/libasncodec.a
44
45 $(TESTRESOURCESTATUSREQUEST): % : $(LIB) src/%.c
46         mkdir -p $(dir $@)
47         $(CC) $(CFLAGS) src/$@.c -o $@ $(LIB)  e2ap_engine/libasncodec.a
48
49 clean:
50         rm -rf $(OBJDIR) tests 
51 clobber:
52         cd e2ap_engine/ && make -f converter-example.mk clean
53         rm -rf $(OBJDIR) tests