Changeset 49ed8e7 in rtems
- Timestamp:
- 10/16/01 18:50:03 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8917506d
- Parents:
- 14a67aa9
- Files:
-
- 4 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/Makefile.am
r14a67aa9 r49ed8e7 3 3 ## 4 4 5 AUTOMAKE_OPTIONS = foreign 1. 45 AUTOMAKE_OPTIONS = foreign 1.5 6 6 ACLOCAL_AMFLAGS = -I ../../../aclocal 7 7 -
c/src/exec/libcsupport/configure.ac
r14a67aa9 r49ed8e7 40 40 AC_CONFIG_FILES([Makefile 41 41 include/Makefile 42 include/rtems/Makefile43 include/sys/Makefile44 include/motorola/Makefile45 include/zilog/Makefile46 42 libc/Makefile]) 47 43 AC_OUTPUT -
c/src/lib/ChangeLog
r14a67aa9 r49ed8e7 1 2001-10-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * include/zilog/Makefile.am: Remove. 4 * include/motorola/Makefile.am: Remove. 5 * include/sys/Makefile.am: Remove. 6 * include/rtems/Makefile.am: Remove. 7 * include/Makefile.am: Handle subdirs, require automake-1.5 8 * Makefile.am: Require automake-1.5. 9 1 10 2001-10-12 Joel Sherrill <joel@OARcorp.com> 2 11 -
c/src/lib/Makefile.am
r14a67aa9 r49ed8e7 3 3 ## 4 4 5 AUTOMAKE_OPTIONS = foreign 1. 45 AUTOMAKE_OPTIONS = foreign 1.5 6 6 ACLOCAL_AMFLAGS = -I ../../../aclocal 7 7 -
c/src/lib/configure.ac
r14a67aa9 r49ed8e7 40 40 AC_CONFIG_FILES([Makefile 41 41 include/Makefile 42 include/rtems/Makefile43 include/sys/Makefile44 include/motorola/Makefile45 include/zilog/Makefile46 42 libc/Makefile]) 47 43 AC_OUTPUT -
c/src/lib/include/Makefile.am
r14a67aa9 r49ed8e7 3 3 ## 4 4 5 AUTOMAKE_OPTIONS = foreign 1. 45 AUTOMAKE_OPTIONS = foreign 1.5 6 6 7 7 include_HEADERS = bspIo.h chain.h console.h clockdrv.h iosupp.h ringbuf.h rtc.h \ … … 13 13 $(PROJECT_INCLUDE): 14 14 @$(mkinstalldirs) $@ 15 $(PROJECT_INCLUDE)/motorola: 16 @$(mkinstalldirs) $@ 17 $(PROJECT_INCLUDE)/rtems: 18 @$(mkinstalldirs) $@ 19 $(PROJECT_INCLUDE)/sys: 20 @$(mkinstalldirs) $@ 21 $(PROJECT_INCLUDE)/zilog: 22 @$(mkinstalldirs) $@ 23 15 24 $(PROJECT_INCLUDE)/%.h: %.h 16 25 $(INSTALL_DATA) $< $@ 17 26 27 ## motorola 28 29 include_motoroladir = $(includedir)/motorola 30 31 include_motorola_HEADERS = motorola/mc68230.h motorola/mc68681.h 32 33 PREINSTALL_FILES += $(PROJECT_INCLUDE)/motorola \ 34 $(include_motorola_HEADERS:%=$(PROJECT_INCLUDE)/%) 35 36 ## rtems 37 include_rtemsdir = $(includedir)/rtems 38 39 include_rtems_HEADERS = \ 40 rtems/assoc.h rtems/error.h rtems/libcsupport.h rtems/libio.h rtems/libio_.h \ 41 rtems/termiostypes.h 42 43 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems \ 44 $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/%) 45 46 ## sys 47 48 include_sysdir = $(includedir)/sys 49 50 if !HAS_NETWORKING 51 NETWORKING_H_FILES = sys/ioctl.h 52 endif 53 54 if NEWLIB 55 NEWLIB_H_FILES = sys/termios.h sys/cdefs.h 56 endif 57 58 include_sys_HEADERS = \ 59 sys/ioccom.h \ 60 sys/ttycom.h \ 61 sys/utime.h \ 62 $(NEWLIB_H_FILES) $(NETWORKING_H_FILES) 63 64 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys \ 65 $(include_sys_HEADERS:%=$(PROJECT_INCLUDE)/%) 66 67 ## zilog 68 69 include_zilogdir = $(includedir)/zilog 70 71 include_zilog_HEADERS = zilog/z8036.h zilog/z8530.h zilog/z8536.h 72 73 PREINSTALL_FILES += $(PROJECT_INCLUDE)/zilog \ 74 $(include_zilog_HEADERS:%=$(PROJECT_INCLUDE)/%) 75 76 ## General stuff 18 77 all-local: $(PREINSTALL_FILES) 19 78 20 SUBDIRS = sys rtems motorola zilog21 22 include $(top_srcdir)/../../../automake/subdirs.am23 79 include $(top_srcdir)/../../../automake/local.am -
c/src/lib/libbsp/i960/cvme961/console/console.c
r14a67aa9 r49ed8e7 11 11 * $Id$ 12 12 */ 13 14 #define C961_INIT15 13 16 14 #include <bsp.h> -
c/src/lib/libbsp/i960/cvme961/startup/bspstart.c
r14a67aa9 r49ed8e7 16 16 17 17 #include <string.h> 18 19 #define C961_INIT 18 20 19 21 #include <bsp.h> -
c/src/lib/libbsp/i960/rxgen960/include/bsp.h
r14a67aa9 r49ed8e7 113 113 } 114 114 115 /* 116 #ifdef C961_INIT 115 #ifdef RXGEN960_INIT 117 116 #undef BSP_EXTERN 118 117 #define BSP_EXTERN … … 121 120 #define BSP_EXTERN extern 122 121 #endif 123 */124 125 #undef BSP_EXTERN126 #define BSP_EXTERN127 122 128 123 /* miscellaneous stuff assumed to exist */ -
c/src/lib/libbsp/i960/rxgen960/startup/bspstart.c
r14a67aa9 r49ed8e7 24 24 #include <stdio.h> 25 25 26 #define RXGEN960_INIT 27 26 28 #include <bsp.h> 27 29 #include <rtems/libio.h> -
cpukit/libcsupport/Makefile.am
r14a67aa9 r49ed8e7 3 3 ## 4 4 5 AUTOMAKE_OPTIONS = foreign 1. 45 AUTOMAKE_OPTIONS = foreign 1.5 6 6 ACLOCAL_AMFLAGS = -I ../../../aclocal 7 7 -
cpukit/libcsupport/configure.ac
r14a67aa9 r49ed8e7 40 40 AC_CONFIG_FILES([Makefile 41 41 include/Makefile 42 include/rtems/Makefile43 include/sys/Makefile44 include/motorola/Makefile45 include/zilog/Makefile46 42 libc/Makefile]) 47 43 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.