source: rtems/cpukit/Makefile.am @ 62a210d3

4.104.115
Last change on this file since 62a210d3 was 62a210d3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/05/09 at 06:03:40

Install libnetworking/sys/uio.h if building for NEWLIB.

  • Property mode set to 100644
File size: 3.7 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I aclocal
6
7include $(top_srcdir)/automake/compile.am
8include $(top_srcdir)/automake/multilib.am
9
10# librtemscpu
11SUBDIRS = . score rtems sapi posix itron
12SUBDIRS += libcsupport libblock libfs
13SUBDIRS += libnetworking librpc
14SUBDIRS += libi2c
15SUBDIRS += libmisc
16SUBDIRS += libmd
17SUBDIRS += libgnat
18SUBDIRS += wrapup
19
20SUBDIRS += zlib
21
22# applications
23SUBDIRS += httpd
24SUBDIRS += ftpd
25SUBDIRS += telnetd
26SUBDIRS += pppd
27SUBDIRS += shttpd
28
29noinst_DATA = preinstall-stamp
30preinstall-stamp:
31        $(MAKE) $(AM_MAKEFLAGS) preinstall
32        touch preinstall-stamp
33CLEANFILES = preinstall-stamp
34
35include_HEADERS =
36
37include_rtemsdir = $(includedir)/rtems
38include_rtems_HEADERS =
39
40include_rtems_rtemsdir = $(includedir)/rtems/rtems
41include_rtems_rtems_HEADERS =
42
43include_rtems_bsd_sysdir = $(include_rtemsdir)/bsd/sys
44include_rtems_bsd_sys_HEADERS = include/rtems/bsd/sys/queue.h
45include_rtems_bsd_sys_HEADERS += include/rtems/bsd/sys/cdefs.h
46
47if NEWLIB
48include_sysdir = $(includedir)/sys
49include_sys_HEADERS =
50
51include_HEADERS += libnetworking/memory.h
52
53include_HEADERS += libcsupport/include/tar.h
54
55include_sys_HEADERS += libcsupport/include/sys/ioccom.h \
56    libcsupport/include/sys/filio.h libcsupport/include/sys/ioctl.h \
57    libcsupport/include/sys/sockio.h libcsupport/include/sys/ttycom.h \
58    libcsupport/include/sys/termios.h libcsupport/include/sys/utsname.h
59
60include_sys_HEADERS += libnetworking/sys/uio.h
61
62if LIBNETWORKING
63include_rtems_bsdnetdir = $(includedir)/rtems/bsdnet
64include_rtems_bsdnet_HEADERS = libnetworking/rtems/bsdnet/servers.h
65include_rtems_bsdnet_HEADERS += libnetworking/rtems/bsdnet/_types.h
66endif
67endif
68
69include_rtems_HEADERS += include/rtems/bspIo.h include/rtems/userenv.h \
70    include/rtems/fs.h include/rtems/pci.h \
71    include/rtems/concat.h include/rtems/tar.h \
72    include/rtems/status-checks.h
73
74include_rtems_HEADERS += include/rtems/endian.h
75
76## should be conditional and only installed for PowerPC, x86, and ARM
77include_rtems_HEADERS += include/rtems/irq.h
78
79include_rtems_HEADERS += include/rtems/irq-extension.h
80
81## libfs
82include_rtems_HEADERS += libfs/src/imfs/imfs.h
83
84## POSIX FIFO/pipe
85include_rtems_HEADERS += libfs/src/pipe/pipe.h
86
87## devfs
88include_rtems_HEADERS += libfs/src/devfs/devfs.h
89
90if LIBDOSFS
91include_rtems_HEADERS += libfs/src/dosfs/dosfs.h
92endif
93
94## libblock
95if !UNIX
96include_rtems_HEADERS += libblock/include/rtems/bdbuf.h \
97    libblock/include/rtems/blkdev.h libblock/include/rtems/diskdevs.h \
98    libblock/include/rtems/flashdisk.h libblock/include/rtems/ramdisk.h \
99    libblock/include/rtems/nvdisk.h libblock/include/rtems/nvdisk-sram.h \
100    libblock/include/rtems/ide_part_table.h
101endif
102
103## ftpd
104if LIBNETWORKING
105include_rtems_HEADERS += ftpd/ftpd.h
106endif
107
108## capture
109include_rtems_HEADERS += libmisc/capture/capture.h \
110    libmisc/capture/capture-cli.h
111
112## cpuuse
113include_rtems_HEADERS += libmisc/cpuuse/cpuuse.h
114
115## devnull
116include_rtems_HEADERS += libmisc/devnull/devnull.h
117
118## dumpbuf
119include_rtems_HEADERS += libmisc/dumpbuf/dumpbuf.h
120
121## monitor
122include_rtems_HEADERS += libmisc/monitor/monitor.h
123
124## mw-fb
125include_rtems_HEADERS += libmisc/mw-fb/mw_fb.h libmisc/mw-fb/mw_uid.h
126
127## shell
128if LIBSHELL
129include_rtems_HEADERS += libmisc/shell/shell.h libmisc/shell/shellconfig.h
130endif
131
132## i2c
133include_rtems_HEADERS += libi2c/libi2c.h
134
135## serdbg
136if LIBSERDBG
137include_rtems_HEADERS += libmisc/serdbg/serdbgcnf.h libmisc/serdbg/serdbg.h \
138    libmisc/serdbg/termios_printk_cnf.h libmisc/serdbg/termios_printk.h
139endif
140
141## stackchk
142include_rtems_HEADERS += libmisc/stackchk/stackchk.h
143
144## libuntar
145include_rtems_HEADERS += libmisc/untar/untar.h
146
147## fsmount
148include_rtems_HEADERS += libmisc/fsmount/fsmount.h
149
150include $(srcdir)/preinstall.am
151include $(top_srcdir)/automake/subdirs.am
152include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.