* configure.in: Remove host section, expand target section.
authorJohn Gilmore <gnu@cygnus>
Mon, 13 Jul 1992 02:54:10 +0000 (02:54 +0000)
committerJohn Gilmore <gnu@cygnus>
Mon, 13 Jul 1992 02:54:10 +0000 (02:54 +0000)
gprof/.Sanitize
gprof/ChangeLog
gprof/configure.in

index beb18d318aee6692724b824f7daea437b23ccd83..2ee9399171f376bb15d2ebfe1e7433a76d4bff22 100644 (file)
@@ -24,8 +24,10 @@ Do-first:
 # with rm -rf.
 
 Things-to-keep:
+ChangeLog
 Makefile.in
 arcs.c
+blurbs.c
 config
 configure.in
 dfn.c
@@ -41,7 +43,7 @@ hertz.c
 i386.c
 i386.h
 lookup.c
-pathnames.h
+make-c-prog.awk
 printgprof.c
 printlist.c
 sparc.c
index ea2de7fe6872aee4fc3979d30e82014137069ae0..005b0616e1e1dad1f8cae7b245726aa993be3739 100644 (file)
@@ -1,5 +1,9 @@
 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
index 5b6f44dd8110618da6749b8615b92b988f34b608..f0698c383d95ed9eaca0f0c8cc57379262283c48 100644 (file)
@@ -7,21 +7,14 @@ srctrigger=gprof.c
 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}
This page took 0.02633 seconds and 4 git commands to generate.