478826389e
* configure.in (configdirs): Add gdb.disasm * gdb.disasm: New directory for GDB disassembler tests. * gdb.disasm/hppa.{exp,s,mt}: Disassembly tests for the HPPA.
17 lines
410 B
Makefile
17 lines
410 B
Makefile
#### host, target, and site specific Makefile frags come in here.
|
|
|
|
srcdir = .
|
|
CFLAGS = -g
|
|
|
|
.PHONY: all clean mostlyclean distclean realclean
|
|
|
|
all: $(EXECUTABLES)
|
|
|
|
clean mostlyclean:
|
|
-rm -f *.o $(EXECUTABLES) *.diff *~ *.bad core foo twice-tmp.c
|
|
|
|
distclean realclean: clean
|
|
-rm -f Makefile config.status
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
|
|
$(SHELL) ./config.status
|