]> rtime.felk.cvut.cz Git - frescor/demo.git/blob - build/config.target
ff22b5856fc70a68a0e18663d9ca41976f367ab3
[frescor/demo.git] / build / config.target
1 # -*- makefile -*-
2 # Config file for compilation by OMK for AQuoSA/Linux OS target
3
4 OMIT_KERNEL_PASSES=y
5
6 # For the FFMPEG2OMK hack, we need RELATIVE_DIR earlier:
7 ifndef RELATIVE_DIR
8 RELATIVE_DIR := $(SOURCES_DIR:$(OUTPUT_DIR)%=%)
9 endif
10
11 ifeq ($(RELATIVE_DIR:ffmpeg%=ffmpeg),ffmpeg)
12
13 # Allow building ffmpeg by OMK
14 define FFMPEG_OMKIZE
15 lib_LIBRARIES:=$(NAME)
16 $(NAME)_SOURCES:=$(OBJS:%.o=%.c) $(OBJS-y:%.o=%.c) $(OBJS-yes:%.o=%.c)
17 renamed_include_HEADERS:=$(foreach h,$(HEADERS),$(h)->lib$(NAME)/$(h) )
18 INCLUDES += -I $(srcdir)/..
19 endef
20
21 $(SOURCES_DIR)/Makefile.omk: $(SOURCES_DIR)/Makefile $(MAKERULES_DIR)/ffmpeg/libswscale $(MAKERULES_DIR)/Makefile.omk.ffmpeg
22         @echo "  FFOMK   $@"
23         $(Q)make DEPS="" -C $(SOURCES_DIR) -qp -f $< |sed -ne '/# Pattern-specific Variable Values/,$$ d' -e '/# makefile/,+1 p'|\
24                         sed -e /^define/d -e "/^#/d" -e "/^MAKE/d" > $@
25 #       echo '$(value FFMPEG_OMKIZE)' >> $@ # There is a bug in make
26         $(Q)echo "FFMPEG_SUBDIR=$(RELATIVE_DIR:ffmpeg/%=%)" >> $@
27         $(Q)cat $(MAKERULES_DIR)/Makefile.omk.ffmpeg >> $@
28         $(Q)echo 'CFLAGS := $(CFLAGS) $$(CFLAGS)' >> $@
29
30
31 $(MAKERULES_DIR)/ffmpeg/tools/Makefile:
32         touch $@
33
34 $(MAKERULES_DIR)/ffmpeg/libavcodec/x86/Makefile:
35         touch $@
36
37 $(MAKERULES_DIR)/ffmpeg/libswscale:
38         ln -sf ../../src/libswscale $@
39 endif
40
41
42 # You can override these variables in config.omk
43 AQUOSA_ROOT ?= $(wildcard /usr/local/aquosa)
44 QTDIR ?= $(wildcard /usr/share/qt4)
45
46 export PLATFORM=AQuoSA
47
48 # Create symbolic links to headers instead of copying them. Useful
49 # during development.
50 LN_HEADERS=y
51
52 # We do not want to overwrite original FRESCOR Makefiles
53 USE_LEAF_MAKEFILES=n
54
55 # For demo, we use FORB's inet protocol, to show how FRESCOR works in a
56 # distributed environment
57 CONFIG_FORB_PROTO_UNIX=n
58 CONFIG_FORB_PROTO_INET_DEFAULT=y
59 CONFIG_AQUOSA=y
60 CONFIG_FFMPEG_WITH_FRSH=y
61 CONFIG_DISKBFQ=y
62
63 ########################################
64 # Setting of compiler
65 ########################################
66
67 # This doesn't work since mgcc script eats multiple -M options
68 #CC=mgcc
69 #CFLAGS=-Wall -g  -O1  -Wuninitialized -D$(PLATFORM)
70
71 # Instead, we call normal gcc with parameters which mgcc adds
72
73 CFLAGS=$(ARCH_GCC_OPTS) -Wall -Wuninitialized -g -O1 $(CFLAGS-y) -D_REENTRANT -D$(PLATFORM) -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
74
75 LDFLAGS=$(ARCH_LD_OPTS) $(LIBS_PATH) $(LIBS)
76 LDFLAGS += '-Wl,-rpath,$$ORIGIN/../lib' -z origin --enable-new-dtags
77
78 IDL_COMPILER = $(OUTPUT_DIR)/$(COMPILED_DIR_NAME)/bin/forb-idl
79
80 FRSH_DISTRIBUTED_MODULE_SUPPORTED=true
81
82 # Disable tests which do not compile with FRSH_FORB
83
84 CONFIG_FRSH_TEST_context_switch=n                             # Needs timespec_operations.h and frsh_os_compatibility.h
85 CONFIG_FRSH_TEST_demo_september2007=n                         # Needs frsh_thread_get_vres_id()
86 CONFIG_FRSH_TEST_demo_september2007_with_signals=n            # Some problem with signal constants and non-int vres_id
87 CONFIG_FRSH_TEST_dl_test=n                                    # Needs different Makefile.omk
88 CONFIG_FRSH_TEST_example_d-ac1_frescor=n                      # Needs int vres_id
89 CONFIG_FRSH_TEST_frsh_shared_obj_test=n                       # Needs eat.h and timespec_operations.h
90 CONFIG_FRSH_TEST_functions=n                                  # Needs timespec_operations.h and frsh_os_compatibility.h
91 CONFIG_FRSH_TEST_jitter_test=n                                # Needs timespec_operations.h and frsh_os_compatibility.h
92 CONFIG_FRSH_TEST_sharedobj_prototype=n                        # Needs frsh_sharedobj_XXX
93 CONFIG_FRSH_TEST_test_bind=n                                  # Needs eat.h and timespec_operations.h
94 CONFIG_FRSH_TEST_test_contract_labels=n                       # Needs eat.h and timespec_operations.h
95 CONFIG_FRSH_TEST_test_eat=n                                   # Needs eat.h
96 CONFIG_FRSH_TEST_test_frsh_performance=n                      # Needs more frsh api - todo
97 CONFIG_FRSH_TEST_test_frsh_renegotiate_async=n                # Needs eat.h and timespec_operations.h
98 CONFIG_FRSH_TEST_test_frsh_synch_obj=n                        # Needs frsh_thread_id_t to be simple type - Aquosa declares it as structure
99 CONFIG_FRSH_TEST_test_memory=n                                # Needs different Makefile.omk and then we will see :)
100 CONFIG_FRSH_TEST_demo_sept07_negotiate_and_send=n             # Needs RTEP
101 CONFIG_FRSH_TEST_demo_sept07_negotiations_limit=n             # Needs RTEP
102 CONFIG_FRSH_TEST_demo_sept07_renegotiate_and_send=n           # Needs RTEP
103 CONFIG_FRSH_TEST_test_endpoints=n                             # Needs RTEP
104 CONFIG_FRSH_TEST_test_frsh_distributed_contract_negotiate=n   # Nedds vres_id to be int
105 CONFIG_FRSH_TEST_test_frsh_distributed_contract_renegotiate=n # Needs RTEP
106 CONFIG_FRSH_TEST_test_frsh_distributed_init=n                 # Needs THE_FRSH_CPU_ID
107 CONFIG_FRSH_TEST_test_frsh_marshal=n                          # Accesses frsh_contract_t fields directly
108 CONFIG_FRSH_TEST_test_frsh_send_receive_basic=n               # Needs RTEP
109 CONFIG_FRSH_TEST_test_get_network_info=n                      # Needs RTEP
110 CONFIG_FRSH_TEST_test_self_bind=n                             # Needs eat.h and timespec_operations.h
111 CONFIG_FRSH_TEST_test_sizes=n                                 # Needs frsh_internal.h - TODO
112 CONFIG_FRSH_TEST_test_spare_capacity=n                        # Needs more frsh api - TODO
113 CONFIG_FRSH_TEST_test_timespec_operations=n                   # Needs timespec_operations.h
114 CONFIG_FRSH_TEST_test_vres_id_bits=n                          # Depends on bit-fields in integer vres_id
115 CONFIG_FSA_TESTS=n                                            # Depends on bit-fields in integer vres_id