forked from Imagelibrary/rtems
2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Reformat. Apply dirstamps to preinstallation. * include/Makefile.am: Ditto. * include/rdbg/Makefile.am: Ditto. * include/rdbg/i386/Makefile.am: Ditto. * include/rdbg/m68k/Makefile.am: Ditto. * include/rdbg/powerpc/Makefile.am: Ditto: * src/Makefile.am: Ditto. * src/i386/Makefile.am: Ditto. * src/i386/any/Makefile.am: Ditto. * src/m68k/Makefile.am: Ditto. * src/m68k/any/Makefile.am: Ditto. * src/powerpc/Makefile.am: Ditto. * src/powerpc/new_exception_processing/Makefile.am: Ditto.
This commit is contained in:
@@ -1,3 +1,19 @@
|
||||
2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* Makefile.am: Reformat. Apply dirstamps to preinstallation.
|
||||
* include/Makefile.am: Ditto.
|
||||
* include/rdbg/Makefile.am: Ditto.
|
||||
* include/rdbg/i386/Makefile.am: Ditto.
|
||||
* include/rdbg/m68k/Makefile.am: Ditto.
|
||||
* include/rdbg/powerpc/Makefile.am: Ditto:
|
||||
* src/Makefile.am: Ditto.
|
||||
* src/i386/Makefile.am: Ditto.
|
||||
* src/i386/any/Makefile.am: Ditto.
|
||||
* src/m68k/Makefile.am: Ditto.
|
||||
* src/m68k/any/Makefile.am: Ditto.
|
||||
* src/powerpc/Makefile.am: Ditto.
|
||||
* src/powerpc/new_exception_processing/Makefile.am: Ditto.
|
||||
|
||||
2003-08-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* src/i386/any/Makefile.am, src/m68k/any/Makefile.am,
|
||||
|
||||
@@ -4,5 +4,7 @@
|
||||
|
||||
SUBDIRS = include src
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
include $(top_srcdir)/automake/subdirs.am
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,8 +2,9 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
SUBDIRS = rdbg
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
include $(top_srcdir)/automake/subdirs.am
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -6,14 +6,6 @@ if HAS_RDBG
|
||||
include_rdbgdir = $(includedir)/rdbg
|
||||
|
||||
include_rdbg_HEADERS = rdbg.h servrpc.h
|
||||
|
||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rdbg \
|
||||
$(include_rdbg_HEADERS:%=$(PROJECT_INCLUDE)/rdbg/%)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg:
|
||||
@$(mkinstalldirs) $@
|
||||
$(PROJECT_INCLUDE)/rdbg/%.h: %.h
|
||||
$(INSTALL_DATA) $< $@
|
||||
endif
|
||||
|
||||
all-local: $(PREINSTALL_FILES)
|
||||
@@ -23,5 +15,22 @@ SUBDIRS = $(RTEMS_CPU)
|
||||
DIST_SUBDIRS = $(RTEMS_CPU)
|
||||
endif
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
if HAS_RDBG
|
||||
$(PROJECT_INCLUDE)/rdbg/$(dirstamp):
|
||||
@$(mkinstalldirs) $(PROJECT_INCLUDE)/rdbg
|
||||
@: > $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/rdbg.h: rdbg.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/rdbg.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/rdbg.h
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/servrpc.h: servrpc.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/servrpc.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/servrpc.h
|
||||
endif
|
||||
|
||||
include $(top_srcdir)/automake/subdirs.am
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,19 +2,25 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
include_rdbgdir = $(includedir)/rdbg
|
||||
|
||||
include_rdbg_HEADERS = rdbg_f.h reg.h
|
||||
|
||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rdbg \
|
||||
$(include_rdbg_HEADERS:%=$(PROJECT_INCLUDE)/rdbg/%)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg:
|
||||
@$(mkinstalldirs) $@
|
||||
$(PROJECT_INCLUDE)/rdbg/%.h: %.h
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
all-local: $(PREINSTALL_FILES)
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/$(dirstamp):
|
||||
@$(mkinstalldirs) $(PROJECT_INCLUDE)/rdbg
|
||||
@: > $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/rdbg_f.h: rdbg_f.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/rdbg_f.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/rdbg_f.h
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/reg.h: reg.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/reg.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/reg.h
|
||||
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,19 +2,25 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
include_rdbgdir = $(includedir)/rdbg
|
||||
|
||||
include_rdbg_HEADERS = rdbg_f.h reg.h
|
||||
|
||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rdbg \
|
||||
$(include_rdbg_HEADERS:%=$(PROJECT_INCLUDE)/rdbg/%)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg:
|
||||
@$(mkinstalldirs) $@
|
||||
$(PROJECT_INCLUDE)/rdbg/%.h: %.h
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
all-local: $(PREINSTALL_FILES)
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/$(dirstamp):
|
||||
@$(mkinstalldirs) $(PROJECT_INCLUDE)/rdbg
|
||||
@: > $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/rdbg_f.h: rdbg_f.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/rdbg_f.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/rdbg_f.h
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/reg.h: reg.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/reg.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/reg.h
|
||||
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,19 +2,25 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
include_rdbgdir = $(includedir)/rdbg
|
||||
|
||||
include_rdbg_HEADERS = rdbg_f.h reg.h
|
||||
|
||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rdbg \
|
||||
$(include_rdbg_HEADERS:%=$(PROJECT_INCLUDE)/rdbg/%)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg:
|
||||
@$(mkinstalldirs) $@
|
||||
$(PROJECT_INCLUDE)/rdbg/%.h: %.h
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
all-local: $(PREINSTALL_FILES)
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/$(dirstamp):
|
||||
@$(mkinstalldirs) $(PROJECT_INCLUDE)/rdbg
|
||||
@: > $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/rdbg_f.h: rdbg_f.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/rdbg_f.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/rdbg_f.h
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/reg.h: reg.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/reg.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/reg.h
|
||||
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -10,5 +10,7 @@ endif
|
||||
EXTRA_DIST = _servtgt.c awk.svc excep.c ptrace.c rdbg.c remdeb.x servbkpt.c \
|
||||
servcon.c servrpc.c servtgt.c servtsp.c servutil.c
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
include $(top_srcdir)/automake/subdirs.am
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,10 +2,11 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
SUBDIRS = any
|
||||
|
||||
EXTRA_DIST = excep_f.c rdbg_cpu_asm.S rdbg_f.c
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
include $(top_srcdir)/automake/subdirs.am
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
VPATH = @srcdir@:@srcdir@/..:@srcdir@/../..
|
||||
|
||||
RPCCPUDIR = $(RTEMS_CPU)/any
|
||||
@@ -76,13 +75,8 @@ if RPCTOOLS
|
||||
rm -f $(RPCCPUDIR)/tmpSvc.c )
|
||||
endif
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/remdeb.h: $(srcdir)/remdeb.h
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg:
|
||||
@$(mkinstalldirs) $@
|
||||
|
||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rdbg $(PROJECT_INCLUDE)/rdbg/remdeb.h
|
||||
include_rdbgdir = $(includedir)/rdbg
|
||||
include_rdbg_HEADERS = $(srcdir)/remdeb.h
|
||||
|
||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a
|
||||
|
||||
@@ -90,4 +84,15 @@ all-local: ${ARCH} $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
|
||||
|
||||
EXTRA_DIST = remdeb_f.x $(GEN_C_FILES)
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/$(dirstamp):
|
||||
@$(mkinstalldirs) $(PROJECT_INCLUDE)/rdbg
|
||||
@: > $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/remdeb.h: $(srcdir)/remdeb.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/remdeb.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/remdeb.h
|
||||
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,10 +2,11 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
SUBDIRS = any
|
||||
|
||||
EXTRA_DIST = excep_f.c rdbg_cpu_asm.S rdbg_f.c
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
include $(top_srcdir)/automake/subdirs.am
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
VPATH = @srcdir@:@srcdir@/..:@srcdir@/../..
|
||||
|
||||
RPCCPUDIR = $(RTEMS_CPU)/any
|
||||
@@ -76,13 +75,8 @@ if RPCTOOLS
|
||||
rm -f $(RPCCPUDIR)/tmpSvc.c )
|
||||
endif
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/remdeb.h: $(srcdir)/remdeb.h
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg:
|
||||
@$(mkinstalldirs) $@
|
||||
|
||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rdbg $(PROJECT_INCLUDE)/rdbg/remdeb.h
|
||||
include_rdbgdir = $(includedir)/rdbg
|
||||
include_rdbg_HEADERS = $(srcdir)/remdeb.h
|
||||
|
||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a
|
||||
|
||||
@@ -90,4 +84,15 @@ all-local: ${ARCH} $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
|
||||
|
||||
EXTRA_DIST = remdeb_f.x $(GEN_C_FILES)
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/$(dirstamp):
|
||||
@$(mkinstalldirs) $(PROJECT_INCLUDE)/rdbg
|
||||
@: > $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/remdeb.h: $(srcdir)/remdeb.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/remdeb.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/remdeb.h
|
||||
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,10 +2,11 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
SUBDIRS = new_exception_processing
|
||||
|
||||
EXTRA_DIST = excep_f.c rdbg_cpu_asm.S rdbg_f.c
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
include $(top_srcdir)/automake/subdirs.am
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
## $Id$
|
||||
##
|
||||
|
||||
|
||||
VPATH = @srcdir@:@srcdir@/..:@srcdir@/../..
|
||||
|
||||
RPCCPUDIR = $(RTEMS_CPU)/new_exception_processing
|
||||
@@ -76,13 +75,8 @@ if RPCTOOLS
|
||||
rm -f $(RPCCPUDIR)/tmpSvc.c )
|
||||
endif
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/remdeb.h: $(srcdir)/remdeb.h
|
||||
$(INSTALL_DATA) $< $@
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg:
|
||||
@$(mkinstalldirs) $@
|
||||
|
||||
PREINSTALL_FILES = $(PROJECT_INCLUDE)/rdbg $(PROJECT_INCLUDE)/rdbg/remdeb.h
|
||||
include_rdbgdir = $(includedir)/rdbg
|
||||
include_rdbg_HEADERS = $(srcdir)/remdeb.h
|
||||
|
||||
TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a
|
||||
|
||||
@@ -90,4 +84,15 @@ all-local: ${ARCH} $(PREINSTALL_FILES) $(TMPINSTALL_FILES)
|
||||
|
||||
EXTRA_DIST = remdeb_f.x $(GEN_C_FILES)
|
||||
|
||||
PREINSTALL_FILES =
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/$(dirstamp):
|
||||
@$(mkinstalldirs) $(PROJECT_INCLUDE)/rdbg
|
||||
@: > $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
|
||||
$(PROJECT_INCLUDE)/rdbg/remdeb.h: $(srcdir)/remdeb.h $(PROJECT_INCLUDE)/rdbg/$(dirstamp)
|
||||
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rdbg/remdeb.h
|
||||
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rdbg/remdeb.h
|
||||
|
||||
include $(top_srcdir)/automake/local.am
|
||||
|
||||
Reference in New Issue
Block a user