[Guardsoft-cvs] guard/src/dbgsrv Makefile.in,1.26,1.27
Brought to you by:
jarrah
|
From: Greg W. <ja...@us...> - 2005-05-01 16:29:23
|
Update of /cvsroot/guardsoft/guard/src/dbgsrv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26849 Modified Files: Makefile.in Log Message: GDB MI support. Index: Makefile.in =================================================================== RCS file: /cvsroot/guardsoft/guard/src/dbgsrv/Makefile.in,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** Makefile.in 7 Jan 2004 02:29:47 -0000 1.26 --- Makefile.in 1 May 2005 16:29:13 -0000 1.27 *************** *** 44,48 **** USEFUL = $(srcdir)/../useful COMPAT = $(srcdir)/../compat ! ALL_CFLAGS = $(CPPFLAGS) $(DEFS) -DBINDIR=\"$(bindir)\" -I$(srcdir) -I$(TOP) -I$(COMPAT) $(INCLUDE_aif) -I$(USEFUL) $(CFLAGS) INSPROGS = dbgsrv guard_starter INSLIBS = libdbg.a --- 44,50 ---- USEFUL = $(srcdir)/../useful COMPAT = $(srcdir)/../compat ! LIB_libmigdb = @LIB_libmigdb@ ! INCLUDE_libmigdb = @INCLUDE_libmigdb@ ! ALL_CFLAGS = $(CPPFLAGS) $(DEFS) -DBINDIR=\"$(bindir)\" -I$(srcdir) -I$(TOP) -I$(COMPAT) $(INCLUDE_aif) $(INCLUDE_libmigdb) -I$(USEFUL) $(CFLAGS) INSPROGS = dbgsrv guard_starter INSLIBS = libdbg.a *************** *** 58,62 **** #LIBS = -laif -luseful -lnsl # Solaris ! LIBS = -L$(USEFUL) $(LIB_aif) -luseful @LIBS@ -lm RPCGENFLAGS = --- 60,64 ---- #LIBS = -laif -luseful -lnsl # Solaris ! LIBS = -L$(USEFUL) $(LIB_aif) $(LIB_libmigdb) -luseful @LIBS@ -lm RPCGENFLAGS = *************** *** 69,73 **** SRCS = dbg_client.c dbgevent.c dbgsrv.c \ ! dbgsrv_fn.c dbgsrv_gdb.c dbgsrv_idb.c dbgrexp.c \ dbgbp.c dbgsrv_proto.c dbgclnt_proto.c \ cb_clnt.c cb_svr.c cbclnt_soc.c cbsvr_soc.c \ --- 71,76 ---- SRCS = dbg_client.c dbgevent.c dbgsrv.c \ ! dbgsrv_fn.c dbgsrv_gdb.c dbgsrv_gdbmi.c \ ! dbgsrv_idb.c dbgrexp.c \ dbgbp.c dbgsrv_proto.c dbgclnt_proto.c \ cb_clnt.c cb_svr.c cbclnt_soc.c cbsvr_soc.c \ *************** *** 79,83 **** dbgclnt_ms.o ! SOBJS = dbgsrv.o dbgsrv_fn.o dbgsrv_gdb.o dbgsrv_idb.o dbgrexp.o \ dbgevent.o dbgbp.o dbgsrv_soc.o dbgsrv_proto.o cb_svr.o \ cbsvr_soc.o dbg_soc.o --- 82,87 ---- dbgclnt_ms.o ! SOBJS = dbgsrv.o dbgsrv_fn.o dbgsrv_gdb.o dbgsrv_gdbmi.o \ ! dbgsrv_idb.o dbgrexp.o \ dbgevent.o dbgbp.o dbgsrv_soc.o dbgsrv_proto.o cb_svr.o \ cbsvr_soc.o dbg_soc.o |