blob: e1cd92aed4f76bdc297a377b650b448912710b78 [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 \
Pau Espin Pedrol51e9dde2023-01-24 17:34:34 +010058 tun.h \
Pau Espin Pedrol4fc61182023-01-18 18:01:54 +010059 utils.h \
60 write_queue.h \
61 sockaddr_str.h \
62 time_cc.h \
63 use_count.h \
64 $(NULL)
65
66if ENABLE_PLUGIN
67osmocore_HEADERS += plugin.h
68endif
69
70if ENABLE_MSGFILE
71osmocore_HEADERS += msgfile.h
72endif
73
74if ENABLE_SERIAL
75osmocore_HEADERS += serial.h
76endif
77
78if ENABLE_LIBMNL
79osmocore_HEADERS += mnl.h
80endif
81
82osmocoredir = $(includedir)/osmocom/core
83
84noinst_HEADERS = \
85 logging_internal.h \
86 $(NULL)
87
88bit%gen.h: bitXXgen.h.tpl
89 $(AM_V_GEN)$(MKDIR_P) $(dir $@)
90 $(AM_V_GEN)sed -e's/XX/$*/g' $< > $@
91
92crc%gen.h: crcXXgen.h.tpl
93 $(AM_V_GEN)$(MKDIR_P) $(dir $@)
94 $(AM_V_GEN)sed -e's/XX/$*/g' $< > $@