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

* console/Makefile.am: Misc cleanups and fixes.
	* irq/Makefile.am: Misc cleanups and fixes.
	* start/Makefile.am: Misc cleanups and fixes.
	* startup/Makefile.am: Misc cleanups and fixes.
	* wrapup/Makefile.am: Misc cleanups and fixes.
This commit is contained in:
Ralf Corsepius
2003-12-09 14:20:58 +00:00
parent ae31530b99
commit 94c2898085
6 changed files with 24 additions and 23 deletions

View File

@@ -1,3 +1,11 @@
2003-12-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* console/Makefile.am: Misc cleanups and fixes.
* irq/Makefile.am: Misc cleanups and fixes.
* start/Makefile.am: Misc cleanups and fixes.
* startup/Makefile.am: Misc cleanups and fixes.
* wrapup/Makefile.am: Misc cleanups and fixes.
2003-12-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* console/Makefile.am: Remove all: $(ARCH).

View File

@@ -23,7 +23,7 @@ include $(top_srcdir)/../../../../automake/lib.am
$(PGM): $(console_rel_OBJECTS)
$(make-rel)
all: $(console_rel_OBJECTS) $(PGM)
all-local: $(console_rel_OBJECTS) $(PGM)
.PRECIOUS: $(PGM)

View File

@@ -25,7 +25,7 @@ include $(top_srcdir)/../../../../automake/lib.am
$(PGM): $(irq_rel_OBJECTS)
$(make-rel)
all: $(PREINSTALL_FILES) $(irq_rel_OBJECTS) $(PGM)
all-local: $(PREINSTALL_FILES) $(irq_rel_OBJECTS) $(PGM)
.PRECIOUS: $(PGM)

View File

@@ -9,24 +9,20 @@ OBJS = $(S_O_FILES)
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)
@$(mkinstalldirs) $(DESTDIR)$(bsplibdir)
$(INSTALL_DATA) $< $(DESTDIR)$(bsplibdir)
project_lib_DATA = $(ARCH)/start$(LIB_VARIANT).$(OBJEXT)
$(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
$(INSTALL_DATA) $< $@
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
all-local: $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
.PRECIOUS: $(ARCH)/start.$(OBJEXT)
all-local: $(TMPINSTALL_FILES)
EXTRA_DIST = start.S
${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start$(LIB_VARIANT).$(OBJEXT) ${PROJECT_RELEASE}/lib/$(dirstamp)
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/start$(LIB_VARIANT).$(OBJEXT)
include $(top_srcdir)/../../../../automake/local.am

View File

@@ -23,17 +23,14 @@ include $(top_srcdir)/../../../../automake/lib.am
$(PGM): $(startup_rel_OBJECTS)
$(make-rel)
bsplib_DATA = linkcmds
project_lib_DATA = linkcmds
$(PROJECT_RELEASE)/lib/linkcmds: linkcmds
$(INSTALL_DATA) $< $@
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
all: $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
.PRECIOUS: $(PGM)
all-local: $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
EXTRA_DIST = linkcmds
${PROJECT_RELEASE}/lib/linkcmds: linkcmds ${PROJECT_RELEASE}/lib/$(dirstamp)
$(INSTALL_DATA) $< ${PROJECT_RELEASE}/lib/linkcmds
TMPINSTALL_FILES += ${PROJECT_RELEASE}/lib/linkcmds
include $(top_srcdir)/../../../../automake/local.am

View File

@@ -18,6 +18,6 @@ include $(top_srcdir)/../../../../automake/lib.am
$(LIB): $(OBJS)
$(make-library)
all: $(OBJS) $(LIB) $(TMPINSTALL_FILES)
all-local: $(LIB)
include $(top_srcdir)/../../../../automake/local.am