]> rtime.felk.cvut.cz Git - rtems-devel.git/blob - rtems-omk-template/appdl/Makefile.omk
Clone appnet to appdl to prepare base for runtime dlopen components load.
[rtems-devel.git] / rtems-omk-template / appdl / Makefile.omk
1 default_CONFIG += CONFIG_OC_BUILD4RTEMS=y
2 default_CONFIG += CONFIG_OC_GDBSTUB=x
3 default_CONFIG += CONFIG_OC_APP_APPDL=x
4 default_CONFIG += CONFIG_OC_APP_APPDL_NET=x
5 default_CONFIG += CONFIG_OC_APP_APPDL_TELNETD=x
6
7 ifeq ($(CONFIG_OC_APP_APPDL),y)
8
9 LOCAL_CONFIG_H = appl_config.h
10
11 bin_PROGRAMS = appdl
12
13 #lib_LIBRARIES = 
14
15 #include_HEADERS = 
16
17 appdl_SOURCES += init.c task_1.c
18
19 appdl_EMBEDTARFILES = rootfs
20
21 lib_LOADLIBES += bar nfs
22
23 ifeq ($(CONFIG_OC_APP_APPDL_TELNETD),y)
24 lib_LOADLIBES += telnetd
25 endif
26
27 endif