source: rtems/cpukit/Makefile.am @ d3d2afdf

4.104.114.84.95
Last change on this file since d3d2afdf was 66e365f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/05/05 at 10:32:53

2005-08-05 Ralf Corsepius <ralf.corsepius@…>

  • Makefile.am: Add libnetworking/memory.h
  • libnetworking/Makefile.am: Remove memory.h
  • Property mode set to 100644
File size: 4.0 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
10SUBDIRS = . score rtems sapi posix itron
11SUBDIRS += libcsupport libblock libfs
12SUBDIRS += libnetworking librpc
13SUBDIRS += libmisc
14SUBDIRS += httpd
15SUBDIRS += ftpd
16SUBDIRS += wrapup
17
18CLEANFILES =
19DISTCLEANFILES =
20
21noinst_DATA = preinstall-stamp
22preinstall-stamp:
23        $(MAKE) $(AM_MAKEFLAGS) preinstall
24        touch preinstall-stamp
25CLEANFILES += preinstall-stamp
26
27include_HEADERS =
28
29include_rtemsdir = $(includedir)/rtems
30include_rtems_HEADERS =
31
32include_rtems_rtemsdir = $(includedir)/rtems/rtems
33include_rtems_rtems_HEADERS =
34
35if DEPRECATED
36include_HEADERS += backward/asm.h backward/chain.h backward/clockdrv.h \
37    backward/confdefs.h backward/console.h backward/imfs.h backward/iosupp.h \
38    backward/ringbuf.h backward/rtc.h backward/spurious.h \
39    backward/timerdrv.h backward/vmeintr.h
40
41if HAS_NETWORKING
42include_HEADERS += backward/ftpd.h
43
44endif
45
46include_motoroladir = $(includedir)/motorola
47include_motorola_HEADERS = backward/motorola/mc68681.h \
48    backward/motorola/mc68230.h
49
50include_zilogdir = $(includedir)/zilog
51include_zilog_HEADERS = backward/zilog/z8536.h backward/zilog/z8036.h \
52    backward/zilog/z8030.h
53
54if !UNIX
55include_HEADERS += backward/dosfs.h
56endif
57
58if HAS_ITRON
59include_HEADERS += backward/itron.h
60endif
61endif
62
63if NEWLIB
64include_sysdir = $(includedir)/sys
65include_sys_HEADERS =
66
67include_HEADERS += libnetworking/memory.h
68
69if RTEMS_PROVIDES_STDINT_H
70include_HEADERS += libcsupport/include/stdint.h
71endif
72if RTEMS_PROVIDES_INTTYPES_H
73include_HEADERS += libcsupport/include/inttypes.h
74endif
75include_HEADERS += libcsupport/include/tar.h
76
77include_sys_HEADERS += libcsupport/include/sys/ioccom.h \
78    libcsupport/include/sys/filio.h libcsupport/include/sys/ioctl.h \
79    libcsupport/include/sys/sockio.h libcsupport/include/sys/ttycom.h \
80    libcsupport/include/sys/termios.h libcsupport/include/sys/utsname.h \
81    libcsupport/include/sys/cdefs.h
82
83if HAS_NETWORKING
84include_rtems_bsdnetdir = $(includedir)/rtems/bsdnet
85include_rtems_bsdnet_HEADERS = libnetworking/rtems/bsdnet/servers.h
86include_rtems_bsdnet_HEADERS += libnetworking/rtems/bsdnet/_types.h
87endif
88endif
89
90include_rtems_HEADERS += include/rtems/bspIo.h include/rtems/userenv.h \
91    include/rtems/fs.h include/rtems/pci.h include/rtems/stdint.h \
92    include/rtems/concat.h include/rtems/tar.h
93
94## should be conditional and only installed for PowerPC, x86, and ARM
95include_rtems_HEADERS += include/rtems/irq.h
96
97## libfs
98include_rtems_HEADERS += libfs/src/imfs/imfs.h
99
100if !UNIX
101include_rtems_HEADERS += libfs/src/dosfs/dosfs.h
102endif
103
104## libblock
105if !UNIX
106include_rtems_HEADERS += libblock/include/rtems/bdbuf.h \
107    libblock/include/rtems/blkdev.h libblock/include/rtems/diskdevs.h \
108    libblock/include/rtems/ramdisk.h \
109    libblock/include/rtems/ide_part_table.h
110endif
111
112## ftpd
113if HAS_NETWORKING
114include_rtems_HEADERS += ftpd/ftpd.h
115endif
116
117## capture
118include_rtems_HEADERS += libmisc/capture/capture.h \
119    libmisc/capture/capture-cli.h
120
121## cpuuse
122include_rtems_HEADERS += libmisc/cpuuse/cpuuse.h
123
124## devnull
125include_rtems_HEADERS += libmisc/devnull/devnull.h
126
127## dumpbuf
128include_rtems_HEADERS += libmisc/dumpbuf/dumpbuf.h
129
130## monitor
131
132include_rtems_HEADERS += libmisc/monitor/monitor.h
133
134## mw-fb
135include_rtems_HEADERS += libmisc/mw-fb/mw_fb.h libmisc/mw-fb/mw_uid.h
136
137## shell
138if LIBSHELL
139include_rtems_HEADERS += libmisc/shell/shell.h
140endif
141
142## rtmonuse
143include_rtems_HEADERS += libmisc/rtmonuse/rtmonuse.h
144
145## serdbg
146if LIBSERDBG
147include_rtems_HEADERS += libmisc/serdbg/serdbgcnf.h libmisc/serdbg/serdbg.h \
148    libmisc/serdbg/termios_printk_cnf.h libmisc/serdbg/termios_printk.h
149endif
150
151## stackchk
152include_rtems_HEADERS += libmisc/stackchk/stackchk.h
153
154## libuntar
155include_rtems_HEADERS += libmisc/untar/untar.h
156
157## fsmount
158include_rtems_HEADERS += libmisc/fsmount/fsmount.h
159
160all-local: $(PREINSTALL_FILES)
161
162include $(srcdir)/preinstall.am
163
164include $(top_srcdir)/automake/subdirs.am
165include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.