Sun Jul 12 19:06:00 1992 John Gilmore (gnu at cygnus.com)
+ * configure.in: Remove host section, expand target section.
+ * config/mt-{tahoe,vax}: Add, to match existing support files.
+ * config/tmake-*: Remove leftover crud.
+
* blurbs.c: New file, created from gprof.flat and gprof.callg by
* make-c-prog.awk: which processes text files into C programs.
* printgprof.c (flatprofheader, gprofheader): Call new functions
srcname="gprof"
# per-host:
-case "${host_cpu}" in
-sparc*) my_host=sparc ;;
-i386*) my_host=i386 ;;
-esac
-
-host_makefile_frag=config/mh-${my_host}
-if [ ! -f ${srcdir}/${host_makefile_frag} ] ; then
- host_makefile_frag=
-fi
# per-target:
-case "${target_cpu}" in
-sparc*) my_target=sparc ;;
-i386*) my_target=i386 ;;
-*) my_target=dummy ;;
+case "${target}" in
+i386-*-*) my_target=i386 ;;
+sparc-*-*) my_target=sparc ;;
+tahoe-*-*) my_target=tahoe ;;
+vax-*-*) my_target=vax ;;
+*-*-*) my_target=dummy ;;
esac
target_makefile_frag=config/mt-${my_target}