summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/dmv177/scv64/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-15 14:00:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-15 14:00:09 +0000
commit090a351181b4062ed709c9eb96417755577fa941 (patch)
tree7784308aff8b72746561f481148255bc1d0bfff2 /c/src/lib/libbsp/powerpc/dmv177/scv64/Makefile.in
parentSwitched CONSOLE_USE_INTERRUPTS to "1" so console would use interrupts. (diff)
downloadrtems-090a351181b4062ed709c9eb96417755577fa941.tar.bz2
New files.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/dmv177/scv64/Makefile.in')
-rw-r--r--c/src/lib/libbsp/powerpc/dmv177/scv64/Makefile.in60
1 files changed, 60 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/powerpc/dmv177/scv64/Makefile.in b/c/src/lib/libbsp/powerpc/dmv177/scv64/Makefile.in
new file mode 100644
index 0000000000..14961659b3
--- /dev/null
+++ b/c/src/lib/libbsp/powerpc/dmv177/scv64/Makefile.in
@@ -0,0 +1,60 @@
+#
+# $Id$
+#
+
+@SET_MAKE@
+srcdir = @srcdir@
+VPATH = @srcdir@
+RTEMS_ROOT = @top_srcdir@
+PROJECT_ROOT = @PROJECT_ROOT@
+
+PGM=${ARCH}/scv64.rel
+
+# C source names, if any, go here -- minus the .c
+C_PIECES=$(SCV64_PIECES)
+C_FILES=$(C_PIECES:%=%.c)
+C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
+
+H_FILES=
+
+SRCS=$(C_FILES) $(H_FILES)
+OBJS=$(C_O_FILES)
+
+include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
+include $(RTEMS_ROOT)/make/leaf.cfg
+
+#
+SCV64_PIECES=scv64
+
+#
+# (OPTIONAL) Add local stuff here using +=
+#
+
+DEFINES +=
+CPPFLAGS +=
+CFLAGS +=
+
+LD_PATHS +=
+LD_LIBS +=
+LDFLAGS +=
+
+#
+# Add your list of files to delete here. The config files
+# already know how to delete some stuff, so you may want
+# to just run 'make clean' first to see what gets missed.
+# 'make clobber' already includes 'make clean'
+#
+
+CLEAN_ADDITIONS +=
+CLOBBER_ADDITIONS +=
+
+${PGM}: ${SRCS} ${OBJS}
+ $(make-rel)
+
+all: ${ARCH} $(SRCS) $(PGM)
+
+# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
+install: all
+
+
+