summaryrefslogtreecommitdiffstats
path: root/testsuites/automake/amcompile.am
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-07 09:11:09 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-07 09:11:09 +0000
commit650b975051489c42cb5d8440655ee3abfb42dd4d (patch)
tree5b7dbff3d15c4ebaf1e8ed90ff4120a5327fa7a2 /testsuites/automake/amcompile.am
parentSwitch back to include compile.am instead of amcompile.am (diff)
downloadrtems-650b975051489c42cb5d8440655ee3abfb42dd4d.tar.bz2
Remove
Diffstat (limited to '')
-rw-r--r--testsuites/automake/amcompile.am71
1 files changed, 0 insertions, 71 deletions
diff --git a/testsuites/automake/amcompile.am b/testsuites/automake/amcompile.am
deleted file mode 100644
index d76f82f0b8..0000000000
--- a/testsuites/automake/amcompile.am
+++ /dev/null
@@ -1,71 +0,0 @@
-##
-## $Id$
-##
-
-## RTEMS_USE_GCC .. if we are using GCC
-
-if RTEMS_USE_GCC
-## All the stuff below is specific to gcc
-GCCSPECS = $(GCC_SPECS) $(RTEMS_BSP_SPECS)
-endif # RTEMS_USE_GCC
-
-depend:
-
-if RTEMS_USE_GCC
-RTEMS_RELLDFLAGS = -qnolinkcmds -nostdlib -Wl,-r
-endif
-LINK_LIBS = $(LD_LIBS)
-
-#COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
-# $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-#CCLD = $(CC)
-#LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
-# $(AM_LDFLAGS) $(LDFLAGS) -o $@
-#
-#CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
-# $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
-#CXXLD = $(CXX)
-#CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
-# $(AM_LDFLAGS) $(LDFLAGS) -o $@
-#
-#CCASCOMPILE = $(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS)
-
-${ARCH}/$(dirstamp):
- @$(mkdir_p) $(ARCH)
- @: > $(ARCH)/$(dirstamp)
-
-# spell out all the LINK_FILE's, rather than using -lbsp, so
-# that $(LINK_FILES) can be a dependency
-
-LINK_OBJS = \
- $(OBJS) \
- $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
-
-LINK_FILES =\
- $(START_FILE) \
- $(OBJS) \
- $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
-
-## -------------------------------------------------------------------------
-ARCH = o-optimize
-
-## -------------------------------------------------------------------------
-CC = @CC@ $(GCCSPECS)
-CXX = @CXX@ $(GCCSPECS)
-CPP = @CPP@ $(GCCSPECS)
-CCAS = @CCAS@ $(GCCSPECS)
-
-LD = @LD@
-OBJCOPY = @OBJCOPY@
-NM = @NM@
-SIZE = @SIZE@
-STRIP = @STRIP@
-
-##
-AM_CPPFLAGS = $(RTEMS_CPPFLAGS)
-AM_CFLAGS = $(RTEMS_CFLAGS)
-AM_CXXFLAGS = $(RTEMS_CXXFLAGS)
-AM_CCASFLAGS = $(CPU_CFLAGS) $(RTEMS_CPPFLAGS) $(RTEMS_CCASFLAGS)
-
-clean-local:
- $(RM) -r ${ARCH}