summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-04-01 18:11:46 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-04-01 18:11:46 +0000
commitc304643b962bb0d906e89e44feb74b07d1052e5b (patch)
tree939a73486b51bb95406357338b8903fc224aaaaf
parent2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-examples-c304643b962bb0d906e89e44feb74b07d1052e5b.tar.bz2
2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile: Update to account for movement of .cfg files.
-rw-r--r--ChangeLog4
-rw-r--r--Makefile5
-rw-r--r--benchmarks/ChangeLog4
-rw-r--r--benchmarks/Makefile2
-rw-r--r--classic_api/ChangeLog4
-rw-r--r--classic_api/Makefile2
-rw-r--r--file_io/ChangeLog4
-rw-r--r--file_io/Makefile2
-rw-r--r--hello/ChangeLog4
-rw-r--r--hello/Makefile2
-rw-r--r--led/ChangeLog4
-rw-r--r--led/Makefile2
-rw-r--r--misc/ChangeLog4
-rw-r--r--misc/Makefile2
-rw-r--r--posix_api/ChangeLog4
-rw-r--r--posix_api/Makefile2
-rw-r--r--ticker/ChangeLog4
-rw-r--r--ticker/Makefile2
-rw-r--r--uboot/ChangeLog4
-rw-r--r--uboot/Makefile2
20 files changed, 52 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index c96e6a1..aeabdbc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2011-03-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* classic_api/triple_period/Makefile:
diff --git a/Makefile b/Makefile
index 996ce15..0bd260f 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,10 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
-SUBDIRS=classic_api posix_api hello led misc ticker file_io
+SUBDIRS=classic_api posix_api hello led misc ticker file_io \
+ benchmarks
# Monitor Specific Examples
SUBDIRS += uboot
diff --git a/benchmarks/ChangeLog b/benchmarks/ChangeLog
index f0a0c70..5a47c53 100644
--- a/benchmarks/ChangeLog
+++ b/benchmarks/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2011-03-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* ChangeLog, Makefile, nbench/Makefile, nbench/README, nbench/main.c,
diff --git a/benchmarks/Makefile b/benchmarks/Makefile
index ce5788c..56e16ee 100644
--- a/benchmarks/Makefile
+++ b/benchmarks/Makefile
@@ -4,6 +4,6 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
SUBDIRS=nbench
diff --git a/classic_api/ChangeLog b/classic_api/ChangeLog
index 015f734..e15e71b 100644
--- a/classic_api/ChangeLog
+++ b/classic_api/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2011-03-03 Joel Sherrill <joel.sherrilL@OARcorp.com>
* classic_signal/test.c: Example clean up.
diff --git a/classic_api/Makefile b/classic_api/Makefile
index f5e1477..4e2628e 100644
--- a/classic_api/Makefile
+++ b/classic_api/Makefile
@@ -4,6 +4,6 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
SUBDIRS=classic_signal triple_period
diff --git a/file_io/ChangeLog b/file_io/ChangeLog
index 993109a..95303db 100644
--- a/file_io/ChangeLog
+++ b/file_io/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2011-03-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* crc/Makefile, fat_ramdisk/Makefile: Fix Makefiles.
diff --git a/file_io/Makefile b/file_io/Makefile
index fd0fb96..924545e 100644
--- a/file_io/Makefile
+++ b/file_io/Makefile
@@ -4,6 +4,6 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
SUBDIRS = fdopen filerdback repeated_opens crc
diff --git a/hello/ChangeLog b/hello/ChangeLog
index 1492cc9..85499fa 100644
--- a/hello/ChangeLog
+++ b/hello/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2011-03-03 Joel Sherrill <joel.sherrilL@OARcorp.com>
* both_hello/test.c, hello_world_c/test.c, posix_hello_world/test.c:
diff --git a/hello/Makefile b/hello/Makefile
index 9f3b0c3..316b776 100644
--- a/hello/Makefile
+++ b/hello/Makefile
@@ -4,7 +4,7 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
SUBDIRS=hello_world_c
diff --git a/led/ChangeLog b/led/ChangeLog
index b9d3891..981d7d6 100644
--- a/led/ChangeLog
+++ b/led/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2011-03-03 Joel Sherrill <joel.sherrilL@OARcorp.com>
* event_server/init.c, msg_server/init.c, sem_server/init.c,
diff --git a/led/Makefile b/led/Makefile
index d05350e..b79a41c 100644
--- a/led/Makefile
+++ b/led/Makefile
@@ -4,7 +4,7 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
SUBDIRS=delay event_server msg_server sem_server ratemon1 ratemon2 \
timeout_event timer timer_server
diff --git a/misc/ChangeLog b/misc/ChangeLog
index 5a3fd2d..d86dd1d 100644
--- a/misc/ChangeLog
+++ b/misc/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2011-03-03 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1748/bsps
diff --git a/misc/Makefile b/misc/Makefile
index d89656b..2654a02 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -4,7 +4,7 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
SUBDIRS=minimum bspcmdline extract_example nanosecond_tick_wrap
diff --git a/posix_api/ChangeLog b/posix_api/ChangeLog
index 3131096..e222816 100644
--- a/posix_api/ChangeLog
+++ b/posix_api/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2009-08-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* psx_example_1/.cvsignore, psx_example_2/.cvsignore,
diff --git a/posix_api/Makefile b/posix_api/Makefile
index c247972..192c09b 100644
--- a/posix_api/Makefile
+++ b/posix_api/Makefile
@@ -4,7 +4,7 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
# If the POSIX API isn't enabled, we can't build these
ifeq ($(RTEMS_HAS_POSIX_API),yes)
diff --git a/ticker/ChangeLog b/ticker/ChangeLog
index b8cc993..d6337e8 100644
--- a/ticker/ChangeLog
+++ b/ticker/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2009-10-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* low_ticker1/init.c: Change minimum stack space on SPARC to 1024.
diff --git a/ticker/Makefile b/ticker/Makefile
index 827a6cd..79c68ce 100644
--- a/ticker/Makefile
+++ b/ticker/Makefile
@@ -4,7 +4,7 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
# Ticker Variations
SUBDIRS = ticker low_ticker low_ticker1 low_ticker2
diff --git a/uboot/ChangeLog b/uboot/ChangeLog
index 9410313..234f424 100644
--- a/uboot/ChangeLog
+++ b/uboot/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * Makefile: Update to account for movement of .cfg files.
+
2009-08-06 Joel Sherrill <joel.sherrill@oarcorp.com>
* uboot_getenv/.cvsignore: New file.
diff --git a/uboot/Makefile b/uboot/Makefile
index f60c254..d58447b 100644
--- a/uboot/Makefile
+++ b/uboot/Makefile
@@ -4,6 +4,6 @@
include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
+include $(RTEMS_SHARE)/make/directory.cfg
SUBDIRS = uboot_getenv