diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-05-03 21:11:41 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-05-03 21:11:41 +0000 |
commit | b8ce69a49eb91cada72736ad2734cca379c74ce1 (patch) | |
tree | c1a2efbddcc07c8052ad9bb239e39e0b8ee22df9 /include/makeinclude | |
parent | 15267405567bbaba8eb4f43d1b06be8961db360d (diff) | |
download | ATCD-b8ce69a49eb91cada72736ad2734cca379c74ce1.tar.gz |
Makefiles must now be generated using MPC.
Diffstat (limited to 'include/makeinclude')
-rw-r--r-- | include/makeinclude/Makefile.rtems | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/include/makeinclude/Makefile.rtems b/include/makeinclude/Makefile.rtems deleted file mode 100644 index aad09668cea..00000000000 --- a/include/makeinclude/Makefile.rtems +++ /dev/null @@ -1,34 +0,0 @@ -# -*- Makefile -*- -# $Id$ - -MAKEFILE = Makefile.rtems - -#export RTEMS_MAKEFILE_PATH=/opt/rtems/sparc-rtems/erc32/ -include $(RTEMS_MAKEFILE_PATH)/Makefile.inc -include $(RTEMS_CUSTOM) -include $(PROJECT_ROOT)/make/leaf.cfg - - -print_cxx: - @echo "$(CXX)" - -print_cc: - @echo "$(CC_FOR_TARGET)" - -print_cflags: - @echo "$(GCCSPECS) $(CPU_CFLAGS)" - -print_prefix: - @echo $(prefix) - -print_target: - @echo $(NM_FOR_TARGET:%nm=%) - -is_big_endian: - t=`echo "#include <rtems.h>" | \ - $(CC_FOR_TARGET) $(GCCSPECS) $(CPU_CFLAGS) -E -dM - | \ - grep CPU_BIG_ENDIAN | cut -d' ' -f3` ; echo $$t - -rtems_init.o: rtems_init.c - $(CC_FOR_TARGET) $(GCCSPECS) $(CPU_CFLAGS) -c rtems_init.c - |