summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 09:36:10 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 09:36:10 +0000
commitb9292646dc8ca05f4bb170f96688e01562ccd5c4 (patch)
treea61183e7493d5655611bc42279a7ff830fc3f740 /cpukit
parent2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-b9292646dc8ca05f4bb170f96688e01562ccd5c4.tar.bz2
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/itron/ChangeLog4
-rw-r--r--cpukit/itron/src/Makefile.am4
-rw-r--r--cpukit/posix/ChangeLog4
-rw-r--r--cpukit/posix/src/Makefile.am4
4 files changed, 10 insertions, 6 deletions
diff --git a/cpukit/itron/ChangeLog b/cpukit/itron/ChangeLog
index 10fa8d6a65..8628767948 100644
--- a/cpukit/itron/ChangeLog
+++ b/cpukit/itron/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES.
+
2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: RTEMS_TOP(../..).
diff --git a/cpukit/itron/src/Makefile.am b/cpukit/itron/src/Makefile.am
index 0c8ca41d51..d6c53bfbb0 100644
--- a/cpukit/itron/src/Makefile.am
+++ b/cpukit/itron/src/Makefile.am
@@ -4,8 +4,6 @@
LIB=$(ARCH)/libitron.a
-INCLUDES = -I.
-
TASK_C_FILES = task.c cre_tsk.c del_tsk.c sta_tsk.c ext_tsk.c exd_tsk.c \
ter_tsk.c dis_dsp.c ena_dsp.c chg_pri.c rot_rdq.c rel_wai.c get_tid.c \
ref_tsk.c
@@ -51,7 +49,7 @@ include $(top_srcdir)/../automake/multilib.am
include $(top_srcdir)/../automake/compile.am
include $(top_srcdir)/../automake/lib.am
-AM_CPPFLAGS += -D__RTEMS_INSIDE__
+AM_CPPFLAGS += -I. -D__RTEMS_INSIDE__
all-local: ${ARCH} ${LIB}
diff --git a/cpukit/posix/ChangeLog b/cpukit/posix/ChangeLog
index 1e6184b3fa..4b52ace5b9 100644
--- a/cpukit/posix/ChangeLog
+++ b/cpukit/posix/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES.
+
2002-07-05 Joel Sherrill <joel@OARcorp.com>
* include/rtems/posix/cancel.h, src/cancel.c, src/cancelrun.c,
diff --git a/cpukit/posix/src/Makefile.am b/cpukit/posix/src/Makefile.am
index 5acf82d323..ca9a8a1375 100644
--- a/cpukit/posix/src/Makefile.am
+++ b/cpukit/posix/src/Makefile.am
@@ -4,8 +4,6 @@
LIB=$(ARCH)/libposix.a
-INCLUDES = -I.
-
# following are semi-implemented and untested
UNUSED_C_FILES = devctl.c intr.c
@@ -95,7 +93,7 @@ include $(top_srcdir)/../automake/lib.am
# Add local stuff here using +=
#
-AM_CPPFLAGS += -D__RTEMS_INSIDE__
+AM_CPPFLAGS += -I. -D__RTEMS_INSIDE__
all-local: ${ARCH} $(LIB)