blob: 3b2ef30da864cc70a35017a2116bc61586640292 [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 \
Pau Espin Pedrol9d0321d2023-01-24 17:33:06 +010038 netdev.h \
Pau Espin Pedrol8a5014b2023-01-19 16:54:47 +010039 netns.h \
Pau Espin Pedrol4fc61182023-01-18 18:01:54 +010040 panic.h \
41 prbs.h \
42 prim.h \
43 process.h \
44 rate_ctr.h \
45 stat_item.h \
46 stats_tcp.h \
47 select.h \
48 sercomm.h \
49 signal.h \
50 socket.h \
51 statistics.h \
52 strrb.h \
53 talloc.h \
54 tdef.h \
55 thread.h \
56 timer.h \
57 timer_compat.h \
58 utils.h \
59 write_queue.h \
60 sockaddr_str.h \
61 time_cc.h \
62 use_count.h \
63 $(NULL)
64
65if ENABLE_PLUGIN
66osmocore_HEADERS += plugin.h
67endif
68
69if ENABLE_MSGFILE
70osmocore_HEADERS += msgfile.h
71endif
72
73if ENABLE_SERIAL
74osmocore_HEADERS += serial.h
75endif
76
77if ENABLE_LIBMNL
78osmocore_HEADERS += mnl.h
79endif
80
81osmocoredir = $(includedir)/osmocom/core
82
83noinst_HEADERS = \
84 logging_internal.h \
85 $(NULL)
86
87bit%gen.h: bitXXgen.h.tpl
88 $(AM_V_GEN)$(MKDIR_P) $(dir $@)
89 $(AM_V_GEN)sed -e's/XX/$*/g' $< > $@
90
91crc%gen.h: crcXXgen.h.tpl
92 $(AM_V_GEN)$(MKDIR_P) $(dir $@)
93 $(AM_V_GEN)sed -e's/XX/$*/g' $< > $@