source: rtems/cpukit/Makefile.am @ b72e847b

4.8
Last change on this file since b72e847b was a70b07b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/12/07 at 15:57:35

2007-06-12 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac, Makefile.am: Add libmd.
  • Property mode set to 100644
File size: 3.3 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 += wrapup
18
19SUBDIRS += zlib
20
21# applications
22SUBDIRS += httpd
23SUBDIRS += ftpd
24SUBDIRS += telnetd
25SUBDIRS += pppd
26SUBDIRS += shttpd
27
28noinst_DATA = preinstall-stamp
29preinstall-stamp:
30        $(MAKE) $(AM_MAKEFLAGS) preinstall
31        touch preinstall-stamp
32CLEANFILES = preinstall-stamp
33
34include_HEADERS =
35
36include_rtemsdir = $(includedir)/rtems
37include_rtems_HEADERS =
38
39include_rtems_rtemsdir = $(includedir)/rtems/rtems
40include_rtems_rtems_HEADERS =
41
42include_rtems_bsd_sysdir = $(include_rtemsdir)/bsd/sys
43include_rtems_bsd_sys_HEADERS = include/rtems/bsd/sys/queue.h
44include_rtems_bsd_sys_HEADERS += include/rtems/bsd/sys/cdefs.h
45
46if NEWLIB
47include_sysdir = $(includedir)/sys
48include_sys_HEADERS =
49
50include_HEADERS += libnetworking/memory.h
51
52include_HEADERS += libcsupport/include/tar.h
53
54include_sys_HEADERS += libcsupport/include/sys/ioccom.h \
55    libcsupport/include/sys/filio.h libcsupport/include/sys/ioctl.h \
56    libcsupport/include/sys/sockio.h libcsupport/include/sys/ttycom.h \
57    libcsupport/include/sys/termios.h libcsupport/include/sys/utsname.h
58
59if LIBNETWORKING
60include_rtems_bsdnetdir = $(includedir)/rtems/bsdnet
61include_rtems_bsdnet_HEADERS = libnetworking/rtems/bsdnet/servers.h
62include_rtems_bsdnet_HEADERS += libnetworking/rtems/bsdnet/_types.h
63endif
64endif
65
66include_rtems_HEADERS += include/rtems/bspIo.h include/rtems/userenv.h \
67    include/rtems/fs.h include/rtems/pci.h include/rtems/stdint.h \
68    include/rtems/concat.h include/rtems/tar.h
69
70include_rtems_HEADERS += include/rtems/endian.h
71
72## should be conditional and only installed for PowerPC, x86, and ARM
73include_rtems_HEADERS += include/rtems/irq.h
74
75## libfs
76include_rtems_HEADERS += libfs/src/imfs/imfs.h
77
78if LIBDOSFS
79include_rtems_HEADERS += libfs/src/dosfs/dosfs.h
80endif
81
82## libblock
83if !UNIX
84include_rtems_HEADERS += libblock/include/rtems/bdbuf.h \
85    libblock/include/rtems/blkdev.h libblock/include/rtems/diskdevs.h \
86    libblock/include/rtems/ramdisk.h \
87    libblock/include/rtems/ide_part_table.h
88endif
89
90## ftpd
91if LIBNETWORKING
92include_rtems_HEADERS += ftpd/ftpd.h
93endif
94
95## capture
96include_rtems_HEADERS += libmisc/capture/capture.h \
97    libmisc/capture/capture-cli.h
98
99## cpuuse
100include_rtems_HEADERS += libmisc/cpuuse/cpuuse.h
101
102## devnull
103include_rtems_HEADERS += libmisc/devnull/devnull.h
104
105## dumpbuf
106include_rtems_HEADERS += libmisc/dumpbuf/dumpbuf.h
107
108## monitor
109include_rtems_HEADERS += libmisc/monitor/monitor.h
110
111## mw-fb
112include_rtems_HEADERS += libmisc/mw-fb/mw_fb.h libmisc/mw-fb/mw_uid.h
113
114## shell
115if LIBSHELL
116include_rtems_HEADERS += libmisc/shell/shell.h
117endif
118
119## i2c
120include_rtems_HEADERS += libi2c/libi2c.h
121
122## serdbg
123if LIBSERDBG
124include_rtems_HEADERS += libmisc/serdbg/serdbgcnf.h libmisc/serdbg/serdbg.h \
125    libmisc/serdbg/termios_printk_cnf.h libmisc/serdbg/termios_printk.h
126endif
127
128## stackchk
129include_rtems_HEADERS += libmisc/stackchk/stackchk.h
130
131## libuntar
132include_rtems_HEADERS += libmisc/untar/untar.h
133
134## fsmount
135include_rtems_HEADERS += libmisc/fsmount/fsmount.h
136
137include $(srcdir)/preinstall.am
138include $(top_srcdir)/automake/subdirs.am
139include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.