diff options
author | Brendan Kehoe <brendan@cygnus> | 1997-06-25 19:24:03 +0000 |
---|---|---|
committer | Brendan Kehoe <brendan@cygnus> | 1997-06-25 19:24:03 +0000 |
commit | 10be59aa1e4a3521c3cb21432b6a6c895bdc757c (patch) | |
tree | 6b39a5080b0741e3ca608538e8502fb878b9c80d /Makefile.in | |
parent | fe80f6384a6923b94a200fc70ff62e8e0b149873 (diff) | |
download | gdb-10be59aa1e4a3521c3cb21432b6a6c895bdc757c.zip gdb-10be59aa1e4a3521c3cb21432b6a6c895bdc757c.tar.gz gdb-10be59aa1e4a3521c3cb21432b6a6c895bdc757c.tar.bz2 |
Move gperf into the toplevel, from libg++.
* configure.in (target_tools): Add target-gperf.
(native_only): Add target-gperf.
* Makefile.in (all-target-gperf): New target, depend on
all-target-libg++.
(configure-target-gperf): Empty rule.
(ALL_TARGET_MODULES): Add all-target-gperf.
(CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
(CHECK_TARGET_MODULES): Add check-target-gperf.
(INSTALL_TARGET_MODULES): Add install-target-gperf.
(CLEAN_TARGET_MODULES): Add clean-target-gperf.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 66a235a..2ee0860 100644 --- a/Makefile.in +++ b/Makefile.in @@ -681,6 +681,7 @@ ALL_TARGET_MODULES = \ all-target-winsup \ all-target-libgloss \ all-target-libiberty \ + all-target-gperf \ all-target-examples # This is a list of the configure targets for all of the modules which @@ -694,6 +695,7 @@ CONFIGURE_TARGET_MODULES = \ configure-target-winsup \ configure-target-libgloss \ configure-target-libiberty \ + configure-target-gperf \ configure-target-examples # This is a list of the check targets for all of the modules which are @@ -704,7 +706,8 @@ CHECK_TARGET_MODULES = \ check-target-libg++ \ check-target-newlib \ check-target-winsup \ - check-target-libiberty + check-target-libiberty \ + check-target-gperf # This is a list of the install targets for all of the modules which are # compiled using $(TARGET_FLAGS_TO_PASS). @@ -715,7 +718,8 @@ INSTALL_TARGET_MODULES = \ install-target-newlib \ install-target-winsup \ install-target-libgloss \ - install-target-libiberty + install-target-libiberty \ + install-target-gperf # This is a list of the targets for which we can do a clean-{target}. CLEAN_MODULES = \ @@ -794,6 +798,7 @@ CLEAN_TARGET_MODULES = \ clean-target-winsup \ clean-target-libgloss \ clean-target-libiberty \ + clean-target-gperf \ clean-target-examples # All of the x11 modules that can be cleaned @@ -1370,6 +1375,8 @@ all-bootstrap: all-libiberty all-byacc all-binutils all-gas all-ld GDB_TK = all-tk all-tcl all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK) all-gnuserv: +configure-target-gperf: $(ALL_GCC) +all-target-gperf: configure-target-gperf all-target-libiberty all-target-libg++ all-gprof: all-libiberty all-bfd all-opcodes all-grep: all-libiberty all-grez: all-libiberty all-bfd all-opcodes |