summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/gen68360/startup
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-12-10 12:37:33 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-12-10 12:37:33 +0000
commit4d5d97b3aefd1bff1c1222b95942ff1c5595bec1 (patch)
treed1d4d5eddf1e38f943f17591256d77a2e5cc36d8 /c/src/lib/libbsp/m68k/gen68360/startup
parent2003-12-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-4d5d97b3aefd1bff1c1222b95942ff1c5595bec1.tar.bz2
2003-12-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* start/Makefile.am: Misc cleanups and fixes. * startup/Makefile.am: Misc cleanups and fixes. * wrapup/Makefile.am: Misc cleanups and fixes.
Diffstat (limited to 'c/src/lib/libbsp/m68k/gen68360/startup')
-rw-r--r--c/src/lib/libbsp/m68k/gen68360/startup/Makefile.am30
1 files changed, 14 insertions, 16 deletions
diff --git a/c/src/lib/libbsp/m68k/gen68360/startup/Makefile.am b/c/src/lib/libbsp/m68k/gen68360/startup/Makefile.am
index 92f9804ba5..4da728ab36 100644
--- a/c/src/lib/libbsp/m68k/gen68360/startup/Makefile.am
+++ b/c/src/lib/libbsp/m68k/gen68360/startup/Makefile.am
@@ -26,27 +26,25 @@ AM_CPPFLAGS += -I@srcdir@/../../shared/gdbstub
$(PGM): $(OBJS)
$(make-rel)
-bsplib_DATA = linkcmds linkcmds.prom linkcmds.bootp
-
-$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
- $(INSTALL_DATA) $< $@
-
-$(PROJECT_RELEASE)/lib/linkcmds.prom: linkcmds.prom
- $(INSTALL_DATA) $< $@
-
-$(PROJECT_RELEASE)/lib/linkcmds.bootp: linkcmds.bootp
- $(INSTALL_DATA) $< $@
+project_lib_DATA = linkcmds linkcmds.prom linkcmds.bootp
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
-TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds \
- $(PROJECT_RELEASE)/lib/linkcmds.prom \
- $(PROJECT_RELEASE)/lib/linkcmds.bootp
-
-all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
-.PRECIOUS: $(PGM)
+all-local: $(PGM) $(TMPINSTALL_FILES)
EXTRA_DIST = alloc360.c bspclean.c bspstart.c init68360.c linkcmds \
linkcmds.bootp linkcmds.prom
+${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
+ $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
+TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
+
+${PROJECT_RELEASE}/lib/linkcmds.prom: linkcmds.prom ${PROJECT_RELEASE}/lib/$(dirstamp)
+ $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds.prom
+TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds.prom
+
+${PROJECT_RELEASE}/lib/linkcmds.bootp: linkcmds.bootp ${PROJECT_RELEASE}/lib/$(dirstamp)
+ $(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds.bootp
+TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds.bootp
+
include $(top_srcdir)/../../../../automake/local.am