source: rtems/cpukit/Makefile.am @ b4a2209

4.104.115
Last change on this file since b4a2209 was b4a2209, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/20/09 at 14:27:38

Add include/sys/priority.h.

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