Changeset e37d7196 in rtems for c/src/librdbg
- Timestamp:
- 07/25/03 14:42:01 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 6fcf4571
- Parents:
- c7ff624c
- Location:
- c/src/librdbg
- Files:
-
- 1 deleted
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/librdbg/ChangeLog
rc7ff624c re37d7196 1 2003-07-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Remove (Merged into ../configure.ac). 4 * Makefile.am, include/Makefile.am, include/rdbg/Makefile.am, 5 include/rdbg/i386/Makefile.am, include/rdbg/m68k/Makefile.am, 6 include/rdbg/powerpc/Makefile.am, src/Makefile.am, 7 src/i386/Makefile.am, src/i386/any/Makefile.am, 8 src/m68k/Makefile.am, src/m68k/any/Makefile.am, 9 src/powerpc/Makefile.am, 10 src/powerpc/new_exception_processing/Makefile.am: 11 Reflect having merged configure.ac into ../configure.ac. 12 1 13 2003-07-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 14 -
c/src/librdbg/Makefile.am
rc7ff624c re37d7196 3 3 ## 4 4 5 ACLOCAL_AMFLAGS = -I ../../../aclocal6 7 5 SUBDIRS = include src 8 6 9 include $(top_srcdir)/../../ ../automake/subdirs.am10 include $(top_srcdir)/../../ ../automake/local.am7 include $(top_srcdir)/../../automake/subdirs.am 8 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/include/Makefile.am
rc7ff624c re37d7196 6 6 SUBDIRS = rdbg 7 7 8 include $(top_srcdir)/../../ ../automake/subdirs.am9 include $(top_srcdir)/../../ ../automake/local.am8 include $(top_srcdir)/../../automake/subdirs.am 9 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/include/rdbg/Makefile.am
rc7ff624c re37d7196 3 3 ## 4 4 5 5 if HAS_RDBG 6 6 include_rdbgdir = $(includedir)/rdbg 7 7 8 if HAS_RDBG9 8 include_rdbg_HEADERS = rdbg.h servrpc.h 10 9 … … 24 23 endif 25 24 26 EXTRA_DIST = rdbg.h servrpc.h 27 28 include $(top_srcdir)/../../../automake/subdirs.am 29 include $(top_srcdir)/../../../automake/local.am 25 include $(top_srcdir)/../../automake/subdirs.am 26 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/include/rdbg/i386/Makefile.am
rc7ff624c re37d7196 18 18 all-local: $(PREINSTALL_FILES) 19 19 20 include $(top_srcdir)/../../ ../automake/local.am20 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/include/rdbg/m68k/Makefile.am
rc7ff624c re37d7196 18 18 all-local: $(PREINSTALL_FILES) 19 19 20 include $(top_srcdir)/../../ ../automake/local.am20 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/include/rdbg/powerpc/Makefile.am
rc7ff624c re37d7196 18 18 all-local: $(PREINSTALL_FILES) 19 19 20 include $(top_srcdir)/../../ ../automake/local.am20 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/src/Makefile.am
rc7ff624c re37d7196 4 4 5 5 6 if HAS_RDBG 6 7 SUBDIRS = $(RTEMS_CPU) 8 endif 7 9 8 10 EXTRA_DIST = _servtgt.c awk.svc excep.c ptrace.c rdbg.c remdeb.x servbkpt.c \ 9 11 servcon.c servrpc.c servtgt.c servtsp.c servutil.c 10 12 11 include $(top_srcdir)/../../ ../automake/subdirs.am12 include $(top_srcdir)/../../ ../automake/local.am13 include $(top_srcdir)/../../automake/subdirs.am 14 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/src/i386/Makefile.am
rc7ff624c re37d7196 8 8 EXTRA_DIST = excep_f.c rdbg_cpu_asm.S rdbg_f.c 9 9 10 include $(top_srcdir)/../../ ../automake/subdirs.am11 include $(top_srcdir)/../../ ../automake/local.am10 include $(top_srcdir)/../../automake/subdirs.am 11 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/src/i386/any/Makefile.am
rc7ff624c re37d7196 5 5 6 6 VPATH = @srcdir@:@srcdir@/..:@srcdir@/../.. 7 8 RPCCPUDIR = $(RTEMS_CPU)/any 7 9 8 10 LIBNAME = librdbg … … 33 35 34 36 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 35 include $(top_srcdir)/../../ ../automake/compile.am36 include $(top_srcdir)/../../ ../automake/lib.am37 include $(top_srcdir)/../../automake/compile.am 38 include $(top_srcdir)/../../automake/lib.am 37 39 38 40 # … … 40 42 # 41 43 42 FRONTEND = \"$(R TEMS_CPU)/any/remdeb_f.x\"44 FRONTEND = \"$(RPCCPUDIR)/remdeb_f.x\" 43 45 44 46 $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB) … … 51 53 if RPCTOOLS 52 54 @rm -f $@ 53 ( cd $(top_srcdir)/ src; \55 ( cd $(top_srcdir)/librdbg/src; \ 54 56 $(RPCGEN) -h -DFRONTEND=$(FRONTEND) \ 55 -o i386/any/remdeb.h remdeb.x )57 -o $(RPCCPUDIR)/remdeb.h remdeb.x ) 56 58 endif 57 59 $(srcdir)/remdeb_xdr.c: $(X_FILES) 58 60 if RPCTOOLS 59 61 @rm -f $@ 60 ( cd $(top_srcdir)/ src; \62 ( cd $(top_srcdir)/librdbg/src; \ 61 63 $(RPCGEN) -c -DFRONTEND=$(FRONTEND) \ 62 -o i386/any/remdeb_xdr.c remdeb.x )64 -o $(RPCCPUDIR)/remdeb_xdr.c remdeb.x ) 63 65 endif 64 66 … … 66 68 if RPCTOOLS 67 69 @rm -f $@ tmpSvc.c 68 ( cd $(top_srcdir)/ src; \70 ( cd $(top_srcdir)/librdbg/src; \ 69 71 $(RPCGEN) -m -DFRONTEND=$(FRONTEND) \ 70 -o i386/any/tmpSvc.c remdeb.x; \71 $(AWK) -f ./awk.svc THEPROG="remdeb.h" i386/any/tmpSvc.c \72 > i386/any/remdeb_svc.c; \73 sed -e 's/fprintf.*,/printf(/' i386/any/remdeb_svc.c > i386/any/remdeb_svc.tmp; \74 mv i386/any/remdeb_svc.tmp i386/any/remdeb_svc.c; \75 rm -f i386/any/tmpSvc.c )72 -o $(RPCCPUDIR)/tmpSvc.c remdeb.x; \ 73 $(AWK) -f ./awk.svc THEPROG="remdeb.h" $(RPCCPUDIR)/tmpSvc.c \ 74 > $(RPCCPUDIR)/remdeb_svc.c; \ 75 sed -e 's/fprintf.*,/printf(/' $(RPCCPUDIR)/remdeb_svc.c > $(RPCCPUDIR)/remdeb_svc.tmp; \ 76 mv $(RPCCPUDIR)/remdeb_svc.tmp $(RPCCPUDIR)/remdeb_svc.c; \ 77 rm -f $(RPCCPUDIR)/tmpSvc.c ) 76 78 endif 77 79 … … 90 92 EXTRA_DIST = remdeb_f.x $(GEN_C_FILES) 91 93 92 include $(top_srcdir)/../../ ../automake/local.am94 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/src/m68k/Makefile.am
rc7ff624c re37d7196 8 8 EXTRA_DIST = excep_f.c rdbg_cpu_asm.S rdbg_f.c 9 9 10 include $(top_srcdir)/../../ ../automake/subdirs.am11 include $(top_srcdir)/../../ ../automake/local.am10 include $(top_srcdir)/../../automake/subdirs.am 11 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/src/m68k/any/Makefile.am
rc7ff624c re37d7196 5 5 6 6 VPATH = @srcdir@:@srcdir@/..:@srcdir@/../.. 7 8 RPCCPUDIR = $(RTEMS_CPU)/any 7 9 8 10 LIBNAME = librdbg … … 33 35 34 36 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 35 include $(top_srcdir)/../../ ../automake/compile.am36 include $(top_srcdir)/../../ ../automake/lib.am37 include $(top_srcdir)/../../automake/compile.am 38 include $(top_srcdir)/../../automake/lib.am 37 39 38 40 # … … 40 42 # 41 43 42 FRONTEND = \"$(R TEMS_CPU)/any/remdeb_f.x\"44 FRONTEND = \"$(RPCCPUDIR)/remdeb_f.x\" 43 45 44 46 $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB) … … 51 53 if RPCTOOLS 52 54 @rm -f $@ 53 ( cd $(top_srcdir)/ src; \55 ( cd $(top_srcdir)/librdbg/src; \ 54 56 $(RPCGEN) -h -DFRONTEND=$(FRONTEND) \ 55 -o m68k/any/remdeb.h remdeb.x )57 -o $(RPCCPUDIR)/remdeb.h remdeb.x ) 56 58 endif 57 59 $(srcdir)/remdeb_xdr.c: $(X_FILES) 58 60 if RPCTOOLS 59 61 @rm -f $@ 60 ( cd $(top_srcdir)/ src; \62 ( cd $(top_srcdir)/librdbg/src; \ 61 63 $(RPCGEN) -c -DFRONTEND=$(FRONTEND) \ 62 -o m68k/any/remdeb_xdr.c remdeb.x )64 -o $(RPCCPUDIR)/remdeb_xdr.c remdeb.x ) 63 65 endif 64 66 … … 66 68 if RPCTOOLS 67 69 @rm -f $@ tmpSvc.c 68 ( cd $(top_srcdir)/ src; \70 ( cd $(top_srcdir)/librdbg/src; \ 69 71 $(RPCGEN) -m -DFRONTEND=$(FRONTEND) \ 70 -o m68k/any/tmpSvc.c remdeb.x; \71 $(AWK) -f ./awk.svc THEPROG="remdeb.h" m68k/any/tmpSvc.c \72 > m68k/any/remdeb_svc.c; \73 sed -e 's/fprintf.*,/printf(/' m68k/any/remdeb_svc.c > m68k/any/remdeb_svc.tmp; \74 mv m68k/any/remdeb_svc.tmp m68k/any/remdeb_svc.c; \75 rm -f m68k/any/tmpSvc.c )72 -o $(RPCCPUDIR)/tmpSvc.c remdeb.x; \ 73 $(AWK) -f ./awk.svc THEPROG="remdeb.h" $(RPCCPUDIR)/tmpSvc.c \ 74 > $(RPCCPUDIR)/remdeb_svc.c; \ 75 sed -e 's/fprintf.*,/printf(/' $(RPCCPUDIR)/remdeb_svc.c > $(RPCCPUDIR)/remdeb_svc.tmp; \ 76 mv $(RPCCPUDIR)/remdeb_svc.tmp $(RPCCPUDIR)/remdeb_svc.c; \ 77 rm -f $(RPCCPUDIR)/tmpSvc.c ) 76 78 endif 77 79 … … 90 92 EXTRA_DIST = remdeb_f.x $(GEN_C_FILES) 91 93 92 include $(top_srcdir)/../../ ../automake/local.am94 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/src/powerpc/Makefile.am
rc7ff624c re37d7196 8 8 EXTRA_DIST = excep_f.c rdbg_cpu_asm.S rdbg_f.c 9 9 10 include $(top_srcdir)/../../ ../automake/subdirs.am11 include $(top_srcdir)/../../ ../automake/local.am10 include $(top_srcdir)/../../automake/subdirs.am 11 include $(top_srcdir)/../../automake/local.am -
c/src/librdbg/src/powerpc/new_exception_processing/Makefile.am
rc7ff624c re37d7196 5 5 6 6 VPATH = @srcdir@:@srcdir@/..:@srcdir@/../.. 7 8 RPCCPUDIR = $(RTEMS_CPU)/new_exception_processing 7 9 8 10 LIBNAME = librdbg … … 33 35 34 36 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 35 include $(top_srcdir)/../../ ../automake/compile.am36 include $(top_srcdir)/../../ ../automake/lib.am37 include $(top_srcdir)/../../automake/compile.am 38 include $(top_srcdir)/../../automake/lib.am 37 39 38 40 # … … 40 42 # 41 43 42 FRONTEND = \"$(R TEMS_CPU)/new_exception_processing/remdeb_f.x\"44 FRONTEND = \"$(RPCCPUDIR)/remdeb_f.x\" 43 45 44 46 $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB) … … 51 53 if RPCTOOLS 52 54 @rm -f $@ 53 ( cd $(top_srcdir)/ src; \55 ( cd $(top_srcdir)/librdbg/src; \ 54 56 $(RPCGEN) -h -DFRONTEND=$(FRONTEND) \ 55 -o powerpc/new_exception_processing/remdeb.h remdeb.x )57 -o $(RPCCPUDIR)/remdeb.h remdeb.x ) 56 58 endif 57 59 $(srcdir)/remdeb_xdr.c: $(X_FILES) 58 60 if RPCTOOLS 59 61 @rm -f $@ 60 ( cd $(top_srcdir)/ src; \62 ( cd $(top_srcdir)/librdbg/src; \ 61 63 $(RPCGEN) -c -DFRONTEND=$(FRONTEND) \ 62 -o powerpc/new_exception_processing/remdeb_xdr.c remdeb.x )64 -o $(RPCCPUDIR)/remdeb_xdr.c remdeb.x ) 63 65 endif 64 66 … … 66 68 if RPCTOOLS 67 69 @rm -f $@ tmpSvc.c 68 ( cd $(top_srcdir)/ src; \70 ( cd $(top_srcdir)/librdbg/src; \ 69 71 $(RPCGEN) -m -DFRONTEND=$(FRONTEND) \ 70 -o powerpc/new_exception_processing/tmpSvc.c remdeb.x; \71 $(AWK) -f ./awk.svc THEPROG="remdeb.h" powerpc/new_exception_processing/tmpSvc.c \72 > powerpc/new_exception_processing/remdeb_svc.c; \73 sed -e 's/fprintf.*,/printf(/' powerpc/new_exception_processing/remdeb_svc.c > powerpc/new_exception_processing/remdeb_svc.tmp; \74 mv powerpc/new_exception_processing/remdeb_svc.tmp powerpc/new_exception_processing/remdeb_svc.c; \75 rm -f powerpc/new_exception_processing/tmpSvc.c )72 -o $(RPCCPUDIR)/tmpSvc.c remdeb.x; \ 73 $(AWK) -f ./awk.svc THEPROG="remdeb.h" $(RPCCPUDIR)/tmpSvc.c \ 74 > $(RPCCPUDIR)/remdeb_svc.c; \ 75 sed -e 's/fprintf.*,/printf(/' $(RPCCPUDIR)/remdeb_svc.c > $(RPCCPUDIR)/remdeb_svc.tmp; \ 76 mv $(RPCCPUDIR)/remdeb_svc.tmp $(RPCCPUDIR)/remdeb_svc.c; \ 77 rm -f $(RPCCPUDIR)/tmpSvc.c ) 76 78 endif 77 79 … … 90 92 EXTRA_DIST = remdeb_f.x $(GEN_C_FILES) 91 93 92 include $(top_srcdir)/../../ ../automake/local.am94 include $(top_srcdir)/../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.