mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-01 16:35:04 +00:00
3d3e494e4c
previously deleted make-c-prog.awk. Converts a text file to a c function that prints that text. * flat_bl.m, fsf_callg_bl.m, bsd_callg_bl.m: New files. Inputs to gen-c-prog.awk, containing text describing gprof output. * blurbs.c: Removed. Use *_bl.c instead. * Makefile.in: Use gen-cprog.awk to generate *_bl.c files from *_bl.m files. Also, improve *clean rules. * printgprof.c (printgprof): Usw new function names from *_bl.c.
95 lines
2.2 KiB
Makefile
95 lines
2.2 KiB
Makefile
# @(#)Makefile 5.17 (Berkeley) 5/11/90
|
|
|
|
srcdir = .
|
|
|
|
prefix = /usr/local
|
|
|
|
program_prefix =
|
|
exec_prefix = $(prefix)
|
|
bindir = $(exec_prefix)/bin
|
|
libdir = $(exec_prefix)/lib
|
|
tooldir = $(libdir)
|
|
mandir = $(prefix)/man
|
|
man1dir = $(mandir)/man1
|
|
|
|
datadir = $(prefix)/lib
|
|
|
|
INSTALL = install -c
|
|
INSTALL_PROGRAM = $(INSTALL)
|
|
INSTALL_DATA = $(INSTALL)
|
|
|
|
#### host and target dependent Makefile fragments come in here.
|
|
###
|
|
|
|
PROG= gprof
|
|
SRCS= gprof.c arcs.c dfn.c lookup.c $(MACHINE).c hertz.c \
|
|
printgprof.c printlist.c
|
|
LIBS = ../bfd/libbfd.a ../libiberty/libiberty.a
|
|
|
|
OBJS= gprof.o arcs.o dfn.o lookup.o $(MACHINE).o hertz.o \
|
|
printgprof.o printlist.o \
|
|
flat_bl.o bsd_callg_bl.o fsf_callg_bl.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=
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) -I$(srcdir) -I$(srcdir)/../include -DMACHINE_H=\"$(MACHINE).h\" $(TCFLAGS) $(HCFLAGS) $<
|
|
|
|
all: diststuff $(PROG)
|
|
|
|
.PHONY: check info install-info
|
|
.SUFFIXES: .m
|
|
|
|
.m.c:
|
|
awk -f $(srcdir)/gen-c-prog.awk > ./$*.c \
|
|
FUNCTION=`(echo $*|sed -e 's/_bl//')`_blurb \
|
|
FILE=$*.m $(srcdir)/$*.m
|
|
|
|
diststuff: $(DISTSTUFF)
|
|
|
|
|
|
check:
|
|
info:
|
|
install-info:
|
|
|
|
install: all
|
|
-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)
|
|
$(INSTALL_DATA) $(srcdir)/gprof.1 $(man1dir)/gprof.1
|
|
|
|
$(PROG): $(OBJS)
|
|
$(CC) $(CFLAGS) $(OBJS) -o $(PROG) $(LIBS)
|
|
|
|
mostlyclean:
|
|
-rm -f *.o core gprof nohup.out
|
|
clean: mostlyclean
|
|
-rm -f gprof
|
|
distclean: clean
|
|
-rm -f config.status Makefile
|
|
realclean: distclean
|
|
-rm -f $(DISTSTUFF)
|
|
|
|
Makefile : Makefile.in
|
|
sh config.status
|
|
|
|
|
|
# These get around a bug in Sun Make in SunOS 4.1.1 and Solaris 2
|
|
gprof.o: gprof.c
|
|
arcs.o: arcs.c
|
|
dfn.o: dfn.c
|
|
lookup.o: lookup.c
|
|
$(MACHINE).o: $(MACHINE).c
|
|
hertz.o: hertz.c
|
|
printgprof.o: printgprof.c
|
|
printlist.o: printlist.c
|
|
flat_bl.o: flat_bl.c
|
|
bsd_callg_bl.o: bsd_callg_bl.c
|
|
fsf_callg_bl.o: fsf_callg_bl.c
|