cc51a17021
General cleanup, make output test messages unique, and build different executable files for the non-threaded and threaded cases. * gdb.threads/attach-into-signal.exp (binfile, escapedbinfile): Delete. (executable_nothr, executable_thr): New globals. (top level): Adjust to delete both executables. (corefunc): New parameter $executable. Set $pf_prefix instead of hand writing a prefix in tests. Issue a clean_restart and enable lin-lwp debug output here. (top level): Adjust. Use build_executable. Don't start gdb here, and don't enable lin-lwp debug output here. * gdb.threads/Makefile.in (EXECUTABLES): Adjust.
24 lines
965 B
Makefile
24 lines
965 B
Makefile
VPATH = @srcdir@
|
|
srcdir = @srcdir@
|
|
|
|
EXECUTABLES = attach-into-signal-nothr attach-into-signal-thr \
|
|
attach-stopped attachstop-mt \
|
|
bp_in_thread current-lwp-dead execl execl1 fork-child-threads \
|
|
fork-thread-pending gcore-pthreads hand-call-in-threads \
|
|
ia64-sigill interrupted-hand-call killed linux-dp \
|
|
local-watch-wrong-thread manythreads multi-create pending-step \
|
|
print-threads pthreads pthread_cond_wait schedlock sigthread \
|
|
staticthreads switch-threads thread-execl thread-specific \
|
|
thread_check thread_events threadapply threxit-hop-specific \
|
|
tls tls-main tls-nodebug watchthreads watchthreads-reorder \
|
|
watchthreads2
|
|
|
|
all info install-info dvi install uninstall installcheck check:
|
|
@echo "Nothing to be done for $@..."
|
|
|
|
clean mostlyclean:
|
|
-rm -f *~ *.o a.out xgdb *.x *.ci *.tmp core core.* $(EXECUTABLES) \
|
|
*.core gcore.test
|
|
|
|
distclean maintainer-clean realclean: clean
|
|
-rm -f Makefile config.status config.log config.h gdb.log gdb.sum
|