mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-10 01:23:22 +00:00
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* clock/Makefile.am: Remove all-local: $(ARCH). * console/Makefile.am: Remove all-local: $(ARCH). * network/Makefile.am: Remove all-local: $(ARCH). * start/Makefile.am: Remove all-local: $(ARCH). * startup/Makefile.am: Remove all-local: $(ARCH). * timer/Makefile.am: Remove all-local: $(ARCH). * wrapup/Makefile.am: Remove all-local: $(ARCH).
This commit is contained in:
@@ -1,3 +1,13 @@
|
|||||||
|
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* clock/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* console/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* network/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* start/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* startup/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* timer/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* wrapup/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
|
||||||
2003-09-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-09-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Merge-in include/Makefile.am.
|
* Makefile.am: Merge-in include/Makefile.am.
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ $(PGM): $(clock_rel_OBJECTS)
|
|||||||
# the .rel file built here will be put into libbsp.a by
|
# the .rel file built here will be put into libbsp.a by
|
||||||
# ../wrapup/Makefile
|
# ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(clock_rel_OBJECTS) $(PGM)
|
all-local: $(clock_rel_OBJECTS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ $(PGM): $(console_rel_OBJECTS)
|
|||||||
# the .rel file built here will be put into libbsp.a by
|
# the .rel file built here will be put into libbsp.a by
|
||||||
# ../wrapup/Makefile
|
# ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(console_rel_OBJECTS) $(PGM)
|
all-local: $(console_rel_OBJECTS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ $(PGM): $(OBJS)
|
|||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
if HAS_NETWORKING
|
if HAS_NETWORKING
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
|
|||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(TMPINSTALL_FILES)
|
all-local: $(OBJS) $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
EXTRA_DIST = start.S
|
EXTRA_DIST = start.S
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ UNUSED_C_FILES = setvec.c
|
|||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
||||||
|
|
||||||
all-local: $(ARCH) $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
|
all-local: $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ $(PGM): $(timer_rel_OBJECTS)
|
|||||||
# the .rel file built here will be put into libbsp.a by
|
# the .rel file built here will be put into libbsp.a by
|
||||||
# ../wrapup/Makefile
|
# ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(timer_rel_OBJECTS) $(PGM)
|
all-local: $(timer_rel_OBJECTS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ include $(top_srcdir)/../../../../automake/lib.am
|
|||||||
$(LIB): $(OBJS)
|
$(LIB): $(OBJS)
|
||||||
$(make-library)
|
$(make-library)
|
||||||
|
|
||||||
all-local: $(ARCH) $(LIB)
|
all-local: $(LIB)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* clock/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* console/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* network/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* start/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* startup/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* timer/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* wrapup/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
|
||||||
2003-09-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-09-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Merge-in include/Makefile.am.
|
* Makefile.am: Merge-in include/Makefile.am.
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ $(PGM): $(clock_rel_OBJECTS)
|
|||||||
# the .rel file built here will be put into libbsp.a by
|
# the .rel file built here will be put into libbsp.a by
|
||||||
# ../wrapup/Makefile
|
# ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(clock_rel_OBJECTS) $(PGM)
|
all-local: $(clock_rel_OBJECTS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ $(PGM): $(console_rel_OBJECTS)
|
|||||||
# the .rel file built here will be put into libbsp.a by
|
# the .rel file built here will be put into libbsp.a by
|
||||||
# ../wrapup/Makefile
|
# ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(console_rel_OBJECTS) $(PGM)
|
all-local: $(console_rel_OBJECTS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ $(PGM): $(OBJS)
|
|||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
if HAS_NETWORKING
|
if HAS_NETWORKING
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
|
|||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(TMPINSTALL_FILES)
|
all-local: $(OBJS) $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
EXTRA_DIST = 80386ex.h 80386ex.inc macros.inc start.S ts_1325.inc
|
EXTRA_DIST = 80386ex.h 80386ex.inc macros.inc start.S ts_1325.inc
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ UNUSED_C_FILES = setvec.c
|
|||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
||||||
|
|
||||||
all-local: $(ARCH) $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
|
all-local: $(startup_rel_OBJECTS) $(PGM) $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ $(PGM): $(timer_rel_OBJECTS)
|
|||||||
# the .rel file built here will be put into libbsp.a by
|
# the .rel file built here will be put into libbsp.a by
|
||||||
# ../wrapup/Makefile
|
# ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(timer_rel_OBJECTS) $(PGM)
|
all-local: $(timer_rel_OBJECTS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ include $(top_srcdir)/../../../../automake/lib.am
|
|||||||
$(LIB): $(OBJS)
|
$(LIB): $(OBJS)
|
||||||
$(make-library)
|
$(make-library)
|
||||||
|
|
||||||
all-local: $(ARCH) $(LIB)
|
all-local: $(LIB)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* clock/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* console/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* network/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* start/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* startup/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* timer/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* wrapup/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
|
||||||
2003-09-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-09-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Merge-in include/Makefile.am.
|
* Makefile.am: Merge-in include/Makefile.am.
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ $(PGM): $(OBJS)
|
|||||||
|
|
||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ $(PGM): $(OBJS)
|
|||||||
|
|
||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ $(PGM): $(OBJS)
|
|||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
if HAS_NETWORKING
|
if HAS_NETWORKING
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
|
|||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
|
all-local: $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
.PRECIOUS: $(ARCH)/start.$(OBJEXT)
|
.PRECIOUS: $(ARCH)/start.$(OBJEXT)
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ $(PROJECT_RELEASE)/lib/linkcmds: linkcmds
|
|||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
|
all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ $(PGM): $(OBJS)
|
|||||||
|
|
||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -24,6 +24,6 @@ include $(top_srcdir)/../../../../automake/lib.am
|
|||||||
$(LIB): $(OBJS)
|
$(LIB): $(OBJS)
|
||||||
$(make-library)
|
$(make-library)
|
||||||
|
|
||||||
all-local: $(ARCH) $(LIB)
|
all-local: $(LIB)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
@@ -1,3 +1,13 @@
|
|||||||
|
2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* clock/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* console/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* network/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* start/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* startup/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* timer/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
* wrapup/Makefile.am: Remove all-local: $(ARCH).
|
||||||
|
|
||||||
2003-09-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-09-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* Makefile.am: Merge-in include/Makefile.am.
|
* Makefile.am: Merge-in include/Makefile.am.
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ $(PGM): $(OBJS)
|
|||||||
|
|
||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ $(PGM): $(OBJS)
|
|||||||
|
|
||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ $(PGM): $(OBJS)
|
|||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
if HAS_NETWORKING
|
if HAS_NETWORKING
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT): $(ARCH)/start.$(OBJEXT)
|
|||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).$(OBJEXT)
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
|
all-local: $(OBJS) $(ARCH)/start.$(OBJEXT) $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
.PRECIOUS: $(ARCH)/start.$(OBJEXT)
|
.PRECIOUS: $(ARCH)/start.$(OBJEXT)
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/linkcmds \
|
|||||||
$(PROJECT_RELEASE)/lib/linkcmds.prom \
|
$(PROJECT_RELEASE)/lib/linkcmds.prom \
|
||||||
$(PROJECT_RELEASE)/lib/linkcmds.bootp
|
$(PROJECT_RELEASE)/lib/linkcmds.bootp
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES)
|
all-local: $(OBJS) $(PGM) $(TMPINSTALL_FILES)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ $(PGM): $(OBJS)
|
|||||||
|
|
||||||
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS) $(PGM)
|
all-local: $(OBJS) $(PGM)
|
||||||
|
|
||||||
.PRECIOUS: $(PGM)
|
.PRECIOUS: $(PGM)
|
||||||
|
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ include $(top_srcdir)/../../../../automake/lib.am
|
|||||||
$(LIB): $(OBJS)
|
$(LIB): $(OBJS)
|
||||||
$(make-library)
|
$(make-library)
|
||||||
|
|
||||||
all-local: $(ARCH) $(LIB)
|
all-local: $(LIB)
|
||||||
|
|
||||||
include $(top_srcdir)/../../../../automake/local.am
|
include $(top_srcdir)/../../../../automake/local.am
|
||||||
|
|||||||
Reference in New Issue
Block a user