2003-12-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* start/Makefile.am: Use project_lib_DATA.
This commit is contained in:
Ralf Corsepius
2003-12-13 06:12:01 +00:00
parent b94661383b
commit 6d28ca8f7b
2 changed files with 13 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
2003-12-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* start/Makefile.am: Use project_lib_DATA.
2003-12-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.

View File

@@ -11,14 +11,18 @@ include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am
include $(top_srcdir)/../../bspstart.am
#
# (OPTIONAL) Add local stuff here using +=
#
install-data-local: ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
all-local: $(TMPINSTALL_FILES)
EXTRA_DIST = start.S
$(PROJECT_LIB)/$(dirstamp):
@$(mkdir_p) $(PROJECT_LIB)
@: > $(PROJECT_LIB)/$(dirstamp)
$(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) $(PROJECT_LIB)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
TMPINSTALL_FILES += $(PROJECT_LIB)/start$(LIB_VARIANT).$(OBJEXT)
include $(top_srcdir)/../../../../automake/local.am