forked from Imagelibrary/rtems
2001-01-30 Joel Sherrill <joel@OARcorp.com>
* Makefile.am: Corrected so .h files from rtems/score/ are installed.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2001-01-30 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Makefile.am: Corrected so .h files from rtems/score/ are installed.
|
||||||
|
|
||||||
2002-01-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-01-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* rtems/Makefile.am: Removed.
|
* rtems/Makefile.am: Removed.
|
||||||
|
|||||||
@@ -5,8 +5,6 @@
|
|||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
|
||||||
|
|
||||||
C_FILES = cpu.c
|
C_FILES = cpu.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
@@ -29,13 +27,28 @@ $(PROJECT_INCLUDE):
|
|||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/sparc.h \
|
||||||
|
rtems/score/sparctypes.h
|
||||||
|
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) \
|
||||||
|
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2001-01-30 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Makefile.am: Corrected so .h files from rtems/score/ are installed.
|
||||||
|
|
||||||
2002-01-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-01-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* rtems/Makefile.am: Removed.
|
* rtems/Makefile.am: Removed.
|
||||||
|
|||||||
@@ -5,8 +5,6 @@
|
|||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
ACLOCAL_AMFLAGS = -I ../../../../../../aclocal
|
||||||
|
|
||||||
SUBDIRS = rtems
|
|
||||||
|
|
||||||
C_FILES = cpu.c
|
C_FILES = cpu.c
|
||||||
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
|
||||||
|
|
||||||
@@ -29,13 +27,28 @@ $(PROJECT_INCLUDE):
|
|||||||
$(PROJECT_INCLUDE)/%.h: %.h
|
$(PROJECT_INCLUDE)/%.h: %.h
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score:
|
||||||
|
$(mkinstalldirs) $@
|
||||||
|
|
||||||
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
$(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
|
||||||
$(INSTALL_DATA) $< $@
|
$(INSTALL_DATA) $< $@
|
||||||
|
|
||||||
$(REL): $(rtems_cpu_rel_OBJECTS)
|
$(REL): $(rtems_cpu_rel_OBJECTS)
|
||||||
$(make-rel)
|
$(make-rel)
|
||||||
|
|
||||||
PREINSTALL_FILES = $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
|
include_rtems_scoredir = $(includedir)/rtems/score
|
||||||
|
include_rtems_score_HEADERS = \
|
||||||
|
rtems/score/cpu.h \
|
||||||
|
rtems/score/sparc.h \
|
||||||
|
rtems/score/sparctypes.h
|
||||||
|
|
||||||
|
PREINSTALL_FILES = $(PROJECT_INCLUDE) \
|
||||||
|
$(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \
|
||||||
|
$(PROJECT_INCLUDE)/rtems/score \
|
||||||
|
$(include_rtems_score_HEADERS:%.h=$(PROJECT_INCLUDE)/%.h)
|
||||||
|
|
||||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib$(MULTISUBDIR)/rtems$(LIB_VARIANT).o
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user