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