Modified Files:
[deliverable/binutils-gdb.git] / gprof / Makefile.in
index af0318788fdf6e92bb290898e1e57e47278053b5..f1f5038e44db6d91409f5f98ae1b1b7a803ea62d 100644 (file)
@@ -1,11 +1,12 @@
 #      @(#)Makefile    5.17 (Berkeley) 5/11/90
 
-srcdir         = .
+srcdir = .
 
 prefix         = /usr/local
 
 program_prefix         =
 exec_prefix    = $(prefix)
+program_transform_name =
 bindir         = $(exec_prefix)/bin
 libdir         = $(exec_prefix)/lib
 tooldir = $(libdir)
@@ -15,9 +16,11 @@ man1dir = $(mandir)/man1
 infodir        = $(prefix)/info
 datadir = $(prefix)/lib
 
-INSTALL        = install -c
+INSTALL = `cd $(srcdir); pwd`/../install.sh -c
 INSTALL_PROGRAM = $(INSTALL)
-INSTALL_DATA   = $(INSTALL)
+INSTALL_DATA = $(INSTALL)
+INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
+INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1
 MAKEINFO       = makeinfo
 TEX            = tex
 TEXINDEX       = texindex
@@ -40,13 +43,14 @@ OBJS=       gprof.o arcs.o dfn.o lookup.o $(MACHINE).o hertz.o \
 # Files that can be generated, but should be included in distribution.
 DISTSTUFF = flat_bl.c bsd_callg_bl.c fsf_callg_bl.c
 
-CFLAGS=        
+CFLAGS=-g
+LDFLAGS=
 .c.o:
-       $(CC) -c $(CFLAGS) -I$(srcdir) -I$(srcdir)/../include -DMACHINE_H=\"$(MACHINE).h\" $(TCFLAGS) $(HCFLAGS) $<
+       $(CC) -c $(CFLAGS) -I. -I$(srcdir) -I../bfd -I$(srcdir)/../include -I$(srcdir)/../bfd -DMACHINE_H=\"$(MACHINE).h\" $(TCFLAGS) $(HCFLAGS) $<
 
 all:   diststuff $(PROG)
 
-.PHONY: check info install-info
+.PHONY: check installcheck info install-info
 .SUFFIXES: .m
 
 .m.c:
@@ -69,27 +73,24 @@ info: gprof.info
 dvi: gprof.dvi
 
 check:
+installcheck:
 
-install-info: info
-       -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
-       if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
-       -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
+install-info: 
        for i in *.info* ; do \
                $(INSTALL_DATA) $$i $(infodir)/$$i ; \
        done
 
-install: all install-info
-       -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
-       if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
-       -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
-       -parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
-       if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
-       -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
-       $(INSTALL_PROGRAM) $(PROG) $(bindir)/$(PROG)
-       $(INSTALL_DATA) $(srcdir)/gprof.1 $(man1dir)/gprof.1
-
-$(PROG):       $(OBJS)
-       $(CC) $(CFLAGS) $(OBJS) -o $(PROG) $(LIBS)
+install: 
+       $(INSTALL_XFORM) gprof $(bindir)/gprof
+       $(INSTALL_XFORM1) $(srcdir)/gprof.1 $(man1dir)/gprof.1
+       -n=`t='$(program_transform_name)'; echo gprof | sed -e "" $$t`; \
+         rm -f $(tooldir)/bin/gprof; \
+         ln $(bindir)/$$n $(tooldir)/bin/gprof \
+          || $(INSTALL_PROGRAM) gprof $(tooldir)/bin/gprof; 
+
+
+gprof: $(OBJS)
+       $(CC) -o $(PROG) $(LDFLAGS) $(OBJS) $(LIBS)
 
 mostlyclean:
        -rm -f *.o core gprof nohup.out gprof.info* \
This page took 0.024368 seconds and 4 git commands to generate.