summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2023-04-23 15:43:56 -0500
committerJoel Sherrill <joel@rtems.org>2023-04-23 18:37:25 -0500
commitf75ac1da3ea09b2f35271f09b0795c1b083a3881 (patch)
tree3a2df371a2a201c6592f5a03588621e744eccc0f
parentlivermore/wscript: POSIX threads does not require POSIX enabled (diff)
downloadrtems-examples-f75ac1da3ea09b2f35271f09b0795c1b083a3881.tar.bz2
*/.../Makefile: MANAGERS=all has been obsolete a LONG time
-rw-r--r--benchmarks/nbench/Makefile3
-rw-r--r--classic_api/classic_signal/Makefile3
-rw-r--r--classic_api/triple_period/Makefile3
-rw-r--r--cxx/cxx_throw/Makefile3
-rw-r--r--file_io/crc/Makefile3
-rw-r--r--file_io/fdopen/Makefile3
-rw-r--r--file_io/filerdback/Makefile3
-rw-r--r--file_io/repeated_opens/Makefile3
-rw-r--r--filesystem/fat_ramdisk/Makefile3
-rw-r--r--gdb/overwrite/Makefile3
-rw-r--r--hello/both_hello/Makefile3
-rw-r--r--hello/hello_world_c/Makefile3
-rw-r--r--hello/posix_hello_world/Makefile3
-rw-r--r--led/complex1/Makefile3
-rw-r--r--led/delay/Makefile3
-rw-r--r--led/event_server/Makefile3
-rw-r--r--led/msg_server/Makefile3
-rw-r--r--led/posix_cond_server/Makefile3
-rw-r--r--led/posix_delay_nanosleep/Makefile3
-rw-r--r--led/posix_delay_sleep/Makefile3
-rw-r--r--led/posix_mutex_server/Makefile3
-rw-r--r--led/ratemon1/Makefile3
-rw-r--r--led/ratemon2/Makefile3
-rw-r--r--led/ratemon_cond_server/Makefile3
-rw-r--r--led/sem_server/Makefile3
-rw-r--r--led/timeout_event/Makefile3
-rw-r--r--led/timer/Makefile3
-rw-r--r--led/timer_server/Makefile3
-rw-r--r--micromonitor/umon/Makefile3
-rw-r--r--misc/adamain/Makefile3
-rw-r--r--misc/bspcmdline/Makefile3
-rw-r--r--misc/minimum/Makefile3
-rw-r--r--misc/nanosecond_tick_wrap/Makefile3
-rw-r--r--misc/qemu_vfat/Makefile3
-rw-r--r--misc/x86_display_cpu/Makefile3
-rw-r--r--posix_api/livermore/pthread/Makefile5
-rw-r--r--posix_api/psx_example_1/Makefile3
-rw-r--r--posix_api/psx_example_2/Makefile3
-rw-r--r--posix_api/psx_example_3/Makefile3
-rw-r--r--ticker/low_ticker/Makefile3
-rw-r--r--ticker/low_ticker1/Makefile3
-rw-r--r--ticker/low_ticker2/Makefile3
-rw-r--r--ticker/ticker/Makefile3
-rw-r--r--ticker/ticker_stackchk/Makefile3
-rw-r--r--ticker/ticker_trace/Makefile3
-rw-r--r--uboot/uboot_getenv/Makefile3
46 files changed, 1 insertions, 139 deletions
diff --git a/benchmarks/nbench/Makefile b/benchmarks/nbench/Makefile
index 7d91d72..53228aa 100644
--- a/benchmarks/nbench/Makefile
+++ b/benchmarks/nbench/Makefile
@@ -5,9 +5,6 @@
VPATH=.:nbench-byte-2.2.3
PGM=${ARCH}/nbench.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = main.c \
emfloat.c \
diff --git a/classic_api/classic_signal/Makefile b/classic_api/classic_signal/Makefile
index b150270..572f328 100644
--- a/classic_api/classic_signal/Makefile
+++ b/classic_api/classic_signal/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/classic_signal.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/classic_api/triple_period/Makefile b/classic_api/triple_period/Makefile
index a0cdfdb..ec1f0fd 100644
--- a/classic_api/triple_period/Makefile
+++ b/classic_api/triple_period/Makefile
@@ -1,8 +1,5 @@
PGM=${ARCH}/triple_period.exe
-# optional managers required
-MANAGERS=all
-
# C source names, if any, go here -- minus the .c
CSRCS = init.c tasks.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/cxx/cxx_throw/Makefile b/cxx/cxx_throw/Makefile
index 24e5979..9704e0c 100644
--- a/cxx/cxx_throw/Makefile
+++ b/cxx/cxx_throw/Makefile
@@ -9,9 +9,6 @@
EXEC=cxx_throw.exe
PGM=${ARCH}/$(EXEC)
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS =
COBJS_ = $(CSRCS:.c=.o)
diff --git a/file_io/crc/Makefile b/file_io/crc/Makefile
index c632fe2..fab2f73 100644
--- a/file_io/crc/Makefile
+++ b/file_io/crc/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/crc.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = crc_32.c init.c fs-root-tar.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/file_io/fdopen/Makefile b/file_io/fdopen/Makefile
index 7643abe..63b805a 100644
--- a/file_io/fdopen/Makefile
+++ b/file_io/fdopen/Makefile
@@ -9,9 +9,6 @@
EXEC=test.exe
PGM=${ARCH}/$(EXEC)
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS_ = $(CSRCS:.c=.o)
diff --git a/file_io/filerdback/Makefile b/file_io/filerdback/Makefile
index 7643abe..63b805a 100644
--- a/file_io/filerdback/Makefile
+++ b/file_io/filerdback/Makefile
@@ -9,9 +9,6 @@
EXEC=test.exe
PGM=${ARCH}/$(EXEC)
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS_ = $(CSRCS:.c=.o)
diff --git a/file_io/repeated_opens/Makefile b/file_io/repeated_opens/Makefile
index 7643abe..63b805a 100644
--- a/file_io/repeated_opens/Makefile
+++ b/file_io/repeated_opens/Makefile
@@ -9,9 +9,6 @@
EXEC=test.exe
PGM=${ARCH}/$(EXEC)
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS_ = $(CSRCS:.c=.o)
diff --git a/filesystem/fat_ramdisk/Makefile b/filesystem/fat_ramdisk/Makefile
index d57a464..e0d8a18 100644
--- a/filesystem/fat_ramdisk/Makefile
+++ b/filesystem/fat_ramdisk/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/fat_ramdisk.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c FilesystemImage.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/gdb/overwrite/Makefile b/gdb/overwrite/Makefile
index 79b9d5d..02f7785 100644
--- a/gdb/overwrite/Makefile
+++ b/gdb/overwrite/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/overwrite.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = overwrite.c rtems_init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/hello/both_hello/Makefile b/hello/both_hello/Makefile
index cbc87b8..ed0d065 100644
--- a/hello/both_hello/Makefile
+++ b/hello/both_hello/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/both_hello.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/hello/hello_world_c/Makefile b/hello/hello_world_c/Makefile
index 6956b28..4717c86 100644
--- a/hello/hello_world_c/Makefile
+++ b/hello/hello_world_c/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/hello.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/hello/posix_hello_world/Makefile b/hello/posix_hello_world/Makefile
index 600818b..9674bc6 100644
--- a/hello/posix_hello_world/Makefile
+++ b/hello/posix_hello_world/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/posix_hello.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/complex1/Makefile b/led/complex1/Makefile
index af551be..1030b6c 100644
--- a/led/complex1/Makefile
+++ b/led/complex1/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/complex1.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = periodic.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/delay/Makefile b/led/delay/Makefile
index 0d96dad..cd47407 100644
--- a/led/delay/Makefile
+++ b/led/delay/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/delay.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/event_server/Makefile b/led/event_server/Makefile
index 1525344..3c8b28d 100644
--- a/led/event_server/Makefile
+++ b/led/event_server/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/event_server.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/msg_server/Makefile b/led/msg_server/Makefile
index 64e4646..2f99782 100644
--- a/led/msg_server/Makefile
+++ b/led/msg_server/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/msg_server.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/posix_cond_server/Makefile b/led/posix_cond_server/Makefile
index 550c95e..818d425 100644
--- a/led/posix_cond_server/Makefile
+++ b/led/posix_cond_server/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/posix_condvar.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/posix_delay_nanosleep/Makefile b/led/posix_delay_nanosleep/Makefile
index c681b6f..83c2629 100644
--- a/led/posix_delay_nanosleep/Makefile
+++ b/led/posix_delay_nanosleep/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/posix_delay_nanosleep.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/posix_delay_sleep/Makefile b/led/posix_delay_sleep/Makefile
index c681b6f..83c2629 100644
--- a/led/posix_delay_sleep/Makefile
+++ b/led/posix_delay_sleep/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/posix_delay_nanosleep.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/posix_mutex_server/Makefile b/led/posix_mutex_server/Makefile
index d8dea46..19422bf 100644
--- a/led/posix_mutex_server/Makefile
+++ b/led/posix_mutex_server/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/posix_mutex_server.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/ratemon1/Makefile b/led/ratemon1/Makefile
index da2ed1d..56600e0 100644
--- a/led/ratemon1/Makefile
+++ b/led/ratemon1/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/ratemon1.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c #task.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/ratemon2/Makefile b/led/ratemon2/Makefile
index 52ad16f..5cdab1b 100644
--- a/led/ratemon2/Makefile
+++ b/led/ratemon2/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/ratemon2.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/ratemon_cond_server/Makefile b/led/ratemon_cond_server/Makefile
index 5ecfb4a..111eeae 100644
--- a/led/ratemon_cond_server/Makefile
+++ b/led/ratemon_cond_server/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/ratemon_cond_server.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/sem_server/Makefile b/led/sem_server/Makefile
index e9a3b9e..25c6738 100644
--- a/led/sem_server/Makefile
+++ b/led/sem_server/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/sem_server.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/timeout_event/Makefile b/led/timeout_event/Makefile
index 6dbbd35..e2cb566 100644
--- a/led/timeout_event/Makefile
+++ b/led/timeout_event/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/timeout_event.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/timer/Makefile b/led/timer/Makefile
index 38906fb..1b9bf0e 100644
--- a/led/timer/Makefile
+++ b/led/timer/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/timer.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/led/timer_server/Makefile b/led/timer_server/Makefile
index d87d4a5..8780c03 100644
--- a/led/timer_server/Makefile
+++ b/led/timer_server/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/timer_server.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/micromonitor/umon/Makefile b/micromonitor/umon/Makefile
index dace04c..3809c0e 100644
--- a/micromonitor/umon/Makefile
+++ b/micromonitor/umon/Makefile
@@ -5,9 +5,6 @@
VPATH=.
PGM=${ARCH}/umon.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c ## monlib.c tfsDriver.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/misc/adamain/Makefile b/misc/adamain/Makefile
index 191bb81..739fdf3 100644
--- a/misc/adamain/Makefile
+++ b/misc/adamain/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/adamain.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = adacode.c rtems_init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/misc/bspcmdline/Makefile b/misc/bspcmdline/Makefile
index 6c4d949..6984fb3 100644
--- a/misc/bspcmdline/Makefile
+++ b/misc/bspcmdline/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/bspcmdline.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/misc/minimum/Makefile b/misc/minimum/Makefile
index 986c31e..1bdeccf 100644
--- a/misc/minimum/Makefile
+++ b/misc/minimum/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/minimum.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/misc/nanosecond_tick_wrap/Makefile b/misc/nanosecond_tick_wrap/Makefile
index 9ba4b16..44c3b7f 100644
--- a/misc/nanosecond_tick_wrap/Makefile
+++ b/misc/nanosecond_tick_wrap/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/nanoseconds_tick_wrap.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/misc/qemu_vfat/Makefile b/misc/qemu_vfat/Makefile
index e6ae079..a9c740f 100644
--- a/misc/qemu_vfat/Makefile
+++ b/misc/qemu_vfat/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/qemu_vfat.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c start_test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/misc/x86_display_cpu/Makefile b/misc/x86_display_cpu/Makefile
index 8635966..892c8fd 100644
--- a/misc/x86_display_cpu/Makefile
+++ b/misc/x86_display_cpu/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/display_cpu.exe
-# optional managers required
-MANAGERS=all
-
# C source names
SRCS = test.c
OBJS = $(SRCS:%.[cS]=${ARCH}/%.o)
diff --git a/posix_api/livermore/pthread/Makefile b/posix_api/livermore/pthread/Makefile
index fdd13dc..f397a8e 100644
--- a/posix_api/livermore/pthread/Makefile
+++ b/posix_api/livermore/pthread/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/pthread.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
@@ -20,4 +17,4 @@ OBJS= $(COBJS) $(CXXOBJS) $(ASOBJS)
all: ${ARCH} $(PGM)
$(PGM): $(OBJS)
- $(make-exe) \ No newline at end of file
+ $(make-exe)
diff --git a/posix_api/psx_example_1/Makefile b/posix_api/psx_example_1/Makefile
index cbe498f..49fcbb4 100644
--- a/posix_api/psx_example_1/Makefile
+++ b/posix_api/psx_example_1/Makefile
@@ -8,9 +8,6 @@
PGM=${ARCH}/psx_example_1.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test1.c
COBJS_ = $(CSRCS:.c=.o)
diff --git a/posix_api/psx_example_2/Makefile b/posix_api/psx_example_2/Makefile
index 689b1e1..14fb922 100644
--- a/posix_api/psx_example_2/Makefile
+++ b/posix_api/psx_example_2/Makefile
@@ -8,9 +8,6 @@
PGM=${ARCH}/psx_example_2.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test2.c
COBJS_ = $(CSRCS:.c=.o)
diff --git a/posix_api/psx_example_3/Makefile b/posix_api/psx_example_3/Makefile
index 2f2d4b3..c602816 100644
--- a/posix_api/psx_example_3/Makefile
+++ b/posix_api/psx_example_3/Makefile
@@ -8,9 +8,6 @@
PGM=${ARCH}/psx_example_3.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test3.c
COBJS_ = $(CSRCS:.c=.o)
diff --git a/ticker/low_ticker/Makefile b/ticker/low_ticker/Makefile
index df7a58d..c3fe727 100644
--- a/ticker/low_ticker/Makefile
+++ b/ticker/low_ticker/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/low_ticker.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/ticker/low_ticker1/Makefile b/ticker/low_ticker1/Makefile
index 9e5d056..2e27dc3 100644
--- a/ticker/low_ticker1/Makefile
+++ b/ticker/low_ticker1/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/low_ticker1.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/ticker/low_ticker2/Makefile b/ticker/low_ticker2/Makefile
index bc85920..3ce1787 100644
--- a/ticker/low_ticker2/Makefile
+++ b/ticker/low_ticker2/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/low_ticker2.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/ticker/ticker/Makefile b/ticker/ticker/Makefile
index 4347705..a7be856 100644
--- a/ticker/ticker/Makefile
+++ b/ticker/ticker/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/ticker.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/ticker/ticker_stackchk/Makefile b/ticker/ticker_stackchk/Makefile
index 4347705..a7be856 100644
--- a/ticker/ticker_stackchk/Makefile
+++ b/ticker/ticker_stackchk/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/ticker.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/ticker/ticker_trace/Makefile b/ticker/ticker_trace/Makefile
index 4347705..a7be856 100644
--- a/ticker/ticker_trace/Makefile
+++ b/ticker/ticker_trace/Makefile
@@ -4,9 +4,6 @@
PGM=${ARCH}/ticker.exe
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = init.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)
diff --git a/uboot/uboot_getenv/Makefile b/uboot/uboot_getenv/Makefile
index de6914c..00bf6a8 100644
--- a/uboot/uboot_getenv/Makefile
+++ b/uboot/uboot_getenv/Makefile
@@ -5,9 +5,6 @@
EXEC=uboot_getenv.exe
PGM=${ARCH}/$(EXEC)
-# optional managers required
-MANAGERS=all
-
# C source names
CSRCS = test.c
COBJS = $(CSRCS:%.c=${ARCH}/%.o)