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