Changeset 13482e5d in rtems
- Timestamp:
- 07/08/03 13:46:51 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b422de6c
- Parents:
- c1a72962
- Location:
- cpukit
- Files:
-
- 2 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/itron/ChangeLog
rc1a72962 r13482e5d 1 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Remove (Merged-in into ../configure.ac) 4 * Makefile.am: 5 Reflect having merged configure.ac into ../configure.ac. 6 * src/config.h: New. 7 1 8 2003-03-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
cpukit/itron/Makefile.am
rc1a72962 r13482e5d 3 3 ## 4 4 5 ACLOCAL_AMFLAGS = -I ../aclocal 5 include $(top_srcdir)/automake/multilib.am 6 include $(top_srcdir)/automake/compile.am 7 include $(top_srcdir)/automake/lib.am 6 8 7 include $(top_srcdir)/../automake/multilib.am 8 include $(top_srcdir)/../automake/compile.am 9 include $(top_srcdir)/../automake/lib.am 9 EXTRA_DIST = 10 10 11 11 $(PROJECT_INCLUDE): … … 21 21 $(INSTALL_DATA) $< $@ 22 22 23 if HAS_ITRON 23 24 ## include 25 26 noinst_HEADERS = 27 noinst_HEADERS += src/config.h 24 28 25 29 include_HEADERS = include/itron.h … … 40 44 $(include_itronsys_HEADERS:include/%=$(PROJECT_INCLUDE)/%) 41 45 42 EXTRA_DIST = include/itronsys/README46 EXTRA_DIST += include/itronsys/README 43 47 44 48 ## rtems/itron … … 64 68 inline/rtems/itron/semaphore.inl inline/rtems/itron/sysmgmt.inl inline/rtems/itron/task.inl \ 65 69 inline/rtems/itron/time.inl inline/rtems/itron/vmempool.inl 66 noinst_HEADERS = $(inline_H_FILES)70 noinst_HEADERS += $(inline_H_FILES) 67 71 68 72 if INLINE … … 128 132 OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT)) 129 133 130 AM_CPPFLAGS += -Isrc -D__RTEMS_INSIDE__ 134 AM_CPPFLAGS += -I$(srcdir)/src -D__RTEMS_INSIDE__ 135 136 all-local: $(PREINSTALL_FILES) ${ARCH} ${LIB} 131 137 132 138 $(LIB): ${OBJS} 133 139 $(make-library) 140 endif 134 141 135 142 ${ARCH}/%.$(OBJEXT): src/%.c … … 141 148 EXTRA_DIST += $(C_FILES) $(UNUSED_C_FILES) src/TODO 142 149 143 ## General 144 all-local: $(PREINSTALL_FILES) ${ARCH} ${LIB} 145 146 include $(top_srcdir)/../automake/local.am 150 include $(top_srcdir)/automake/local.am -
cpukit/posix/ChangeLog
rc1a72962 r13482e5d 1 2003-07-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Remove (Merged-in into ../configure.ac) 4 * Makefile.am: 5 Reflect having merged configure.ac into ../configure.ac. 6 * src/config.h: New. 7 1 8 2003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
cpukit/posix/Makefile.am
rc1a72962 r13482e5d 3 3 ## 4 4 5 ACLOCAL_AMFLAGS = -I ../aclocal 6 7 include $(top_srcdir)/../automake/multilib.am 8 include $(top_srcdir)/../automake/compile.am 9 include $(top_srcdir)/../automake/lib.am 5 include $(top_srcdir)/automake/multilib.am 6 include $(top_srcdir)/automake/compile.am 7 include $(top_srcdir)/automake/lib.am 10 8 11 9 EXTRA_DIST = … … 21 19 $(INSTALL_DATA) $< $@ 22 20 21 if HAS_POSIX 22 23 23 PREINSTALL_FILES = $(PROJECT_INCLUDE) 24 24 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/posix … … 27 27 28 28 noinst_HEADERS = include/devctl.h include/intr.h 29 noinst_HEADERS += src/config.h 29 30 30 31 include_HEADERS = include/sched.h include/aio.h include/mqueue.h include/semaphore.h … … 171 172 # 172 173 173 AM_CPPFLAGS += -I src -D__RTEMS_INSIDE__174 AM_CPPFLAGS += -I$(srcdir)/src -D__RTEMS_INSIDE__ 174 175 175 176 all-local: ${ARCH} $(PREINSTALL_FILES) $(LIB) … … 177 178 $(LIB): ${OBJS} 178 179 $(make-library) 180 endif 179 181 180 182 ${ARCH}/%.$(OBJEXT): src/%.c … … 192 194 EXTRA_DIST += $(C_FILES) $(UNUSED_C_FILES) 193 195 194 include $(top_srcdir)/ ../automake/local.am196 include $(top_srcdir)/automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.