]> rtime.felk.cvut.cz Git - frescor/forb.git/blob - src/Makefile.omk
Added possibility invoking remote methods on forb_orb interfaces
[frescor/forb.git] / src / Makefile.omk
1 SUBDIRS = tests
2
3 CFLAGS += -I.
4
5 # IDL_COMPILER += --pidl
6
7 shared_LIBRARIES += forb
8 forb_SOURCES = forb.c cdr.c sha1.c uuid.c iop.c proto.c syncobj.c       \
9                request.c executor.c object.c peer.c port.c refcnt.c     \
10                exec_req.c regref.c
11 forb_CLIENT_IDL = types.idl iop-idl.idl forb-idl.idl
12 forb_SERVER_IDL = forb-idl.idl
13
14 to_forb_subdir=$(1)->forb/$(strip $(1))
15
16 ifeq ($(CONFIG_FORB_PROTO_UNIX),y)
17 forb_SOURCES += proto_unix.c
18 renamed_include_HEADERS += $(call to_forb_subdir, proto_unix.h) 
19 endif
20
21 include_HEADERS = forb.h
22 renamed_include_HEADERS += \
23         $(call to_forb_subdir, basic_types.h) \
24         $(call to_forb_subdir, cdr.h) \
25         $(call to_forb_subdir, cdr_codec.h) \
26         $(call to_forb_subdir, executor.h) \
27         $(call to_forb_subdir, forb-internal.h) \
28         $(call to_forb_subdir, iop.h) \
29         $(call to_forb_subdir, object.h) \
30         $(call to_forb_subdir, object_type.h) \
31         $(call to_forb_subdir, refcnt.h) \
32         $(call to_forb_subdir, request.h) \
33         $(call to_forb_subdir, syncobj.h) \
34         $(call to_forb_subdir, uuid.h)
35
36 renamed_include_GEN_HEADERS = \
37         $(call to_forb_subdir,forb-idl.h) \
38         $(call to_forb_subdir,iop-idl.h) \
39         $(call to_forb_subdir,types.h)
40
41 default_CONFIG = CONFIG_FORB_PROTO_UNIX=y \
42                  CONFIG_FORB_RECV_BUF_SIZE=4096
43
44 config_include_HEADERS = forb/config.h
45 config_DEFINES = CONFIG_FORB_PROTO_UNIX \
46                  CONFIG_FORB_RECV_BUF_SIZE
47
48 include-pass_HOOKS = log_domains.inc #request_gavl.inc
49
50 log_domains.inc:
51         @echo "  UL_LOG  $@"
52         $(Q)$(SOURCES_DIR)/ul_log_domains $(SOURCES_DIR) > $@
53
54 clean-custom:
55         -$(Q)rm log_domains.inc
56
57 # request_gavl.inc: $(SOURCES_DIR)/request_gavl.c
58 #       @echo "  CPP     $@"
59 #       $(Q)$(c_o_COMPILE) -o $@.tmp -E $<
60 #       $(Q)tail -n 1 $@.tmp|indent > $@
61