* Makefile.in: change ${MACHINE} to $(MACHINE), add $(DESTDIR) to

bin install rule.
This commit is contained in:
Mark Eichin 1992-08-12 22:16:34 +00:00
parent 7b5d965008
commit 4be49df5b7
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Wed Aug 12 15:14:14 1992 Mark Eichin (eichin@cygnus.com)
* Makefile.in: change ${MACHINE} to $(MACHINE), add $(DESTDIR) to
bin install rule.
Sun Jul 19 17:34:01 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* Makefile.in: removed installation of the now useless

View File

@ -22,7 +22,7 @@ INSTALL_DATA = $(INSTALL)
###
PROG= gprof
SRCS= gprof.c arcs.c dfn.c lookup.c ${MACHINE}.c hertz.c \
SRCS= gprof.c arcs.c dfn.c lookup.c $(MACHINE).c hertz.c \
printgprof.c printlist.c
LIBS = ../bfd/libbfd.a ../libiberty/libiberty.a
@ -41,8 +41,8 @@ info:
install-info:
install: all
$(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(bindir)
$(INSTALL_DATA) $(srcdir)/gprof.1 $(man1dir)/gprof.1
$(INSTALL_PROGRAM) $(PROG) $(bindir)
$(PROG): $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o $(PROG) $(LIBS)