blob: 1b0a1ce57300fddc713fccf503bf98aa47b40d00 [file] [log] [blame]
Pau Espin Pedrol4fc61182023-01-18 18:01:54 +01001osmocore_HEADERS = \
2 application.h \
3 backtrace.h \
4 base64.h \
5 bit16gen.h \
6 bit32gen.h \
7 bit64gen.h \
8 bits.h \
9 bitvec.h \
10 bitcomp.h \
11 byteswap.h \
12 conv.h \
13 counter.h \
14 crc16.h \
15 crc16gen.h \
16 crc32gen.h \
17 crc64gen.h \
18 crc8gen.h \
19 crcgen.h \
20 endian.h \
21 defs.h \
22 exec.h \
23 fsm.h \
24 gsmtap.h \
25 gsmtap_util.h \
26 hash.h \
27 hashtable.h \
28 isdnhdlc.h \
29 it_q.h \
30 linuxlist.h \
31 linuxrbtree.h \
32 log2.h \
33 logging.h \
34 loggingrb.h \
35 stats.h \
36 macaddr.h \
37 msgb.h \
38 panic.h \
39 prbs.h \
40 prim.h \
41 process.h \
42 rate_ctr.h \
43 stat_item.h \
44 stats_tcp.h \
45 select.h \
46 sercomm.h \
47 signal.h \
48 socket.h \
49 statistics.h \
50 strrb.h \
51 talloc.h \
52 tdef.h \
53 thread.h \
54 timer.h \
55 timer_compat.h \
56 utils.h \
57 write_queue.h \
58 sockaddr_str.h \
59 time_cc.h \
60 use_count.h \
61 $(NULL)
62
63if ENABLE_PLUGIN
64osmocore_HEADERS += plugin.h
65endif
66
67if ENABLE_MSGFILE
68osmocore_HEADERS += msgfile.h
69endif
70
71if ENABLE_SERIAL
72osmocore_HEADERS += serial.h
73endif
74
75if ENABLE_LIBMNL
76osmocore_HEADERS += mnl.h
77endif
78
79osmocoredir = $(includedir)/osmocom/core
80
81noinst_HEADERS = \
82 logging_internal.h \
83 $(NULL)
84
85bit%gen.h: bitXXgen.h.tpl
86 $(AM_V_GEN)$(MKDIR_P) $(dir $@)
87 $(AM_V_GEN)sed -e's/XX/$*/g' $< > $@
88
89crc%gen.h: crcXXgen.h.tpl
90 $(AM_V_GEN)$(MKDIR_P) $(dir $@)
91 $(AM_V_GEN)sed -e's/XX/$*/g' $< > $@