diff options
author | Mark Eichin <eichin@cygnus> | 1992-06-02 17:22:47 +0000 |
---|---|---|
committer | Mark Eichin <eichin@cygnus> | 1992-06-02 17:22:47 +0000 |
commit | 9138a2e2f6bdddcc643a3ed208093d5cc8a7023d (patch) | |
tree | a7461bc46162614482281ef2cffae2bc64073eb5 /gprof/Makefile.in | |
parent | 50a39795e21751fccaf75cf4e9df1378e5fcba62 (diff) | |
download | gdb-9138a2e2f6bdddcc643a3ed208093d5cc8a7023d.zip gdb-9138a2e2f6bdddcc643a3ed208093d5cc8a7023d.tar.gz gdb-9138a2e2f6bdddcc643a3ed208093d5cc8a7023d.tar.bz2 |
Makefile.in: .c.o rule needed, default one (under solaris) ignores CFLAGS
Makefile: it shouldn't be under cvs; given that it is, fix it too
arcs.c: fprintf used where printf should have been.
lookup.c: misdeclared calloc; use a cast instead.
Diffstat (limited to 'gprof/Makefile.in')
-rw-r--r-- | gprof/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gprof/Makefile.in b/gprof/Makefile.in index 3b89353..f13b34f 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -12,6 +12,8 @@ OBJS= gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \ printgprof.o printlist.o CFLAGS= -I. -I../include -DMACHINE_H=\"${MACHINE}.h\" ${TCFLAGS} ${HCFLAGS} +.c.o: + $(CC) -c $(CFLAGS) $< all: ${PROG} |