mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 12:22:20 +08:00
added srcdir=. so that configure puts in a value
added explicit foo.o:foo.c lines since Solaris has the same VPATH bug that SunOs 4.1.1 does...
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
# @(#)Makefile 5.17 (Berkeley) 5/11/90
|
# @(#)Makefile 5.17 (Berkeley) 5/11/90
|
||||||
|
|
||||||
|
srcdir = .
|
||||||
|
|
||||||
#### host and target dependent Makefile fragments come in here.
|
#### host and target dependent Makefile fragments come in here.
|
||||||
###
|
###
|
||||||
|
|
||||||
@ -11,9 +13,9 @@ LIBS = ../bfd/libbfd.a ../libiberty/libiberty.a
|
|||||||
OBJS= gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \
|
OBJS= gprof.o arcs.o dfn.o lookup.o ${MACHINE}.o hertz.o \
|
||||||
printgprof.o printlist.o
|
printgprof.o printlist.o
|
||||||
|
|
||||||
CFLAGS= -I. -I../include -DMACHINE_H=\"${MACHINE}.h\" ${TCFLAGS} ${HCFLAGS}
|
CFLAGS=
|
||||||
.c.o:
|
.c.o:
|
||||||
$(CC) -c $(CFLAGS) $<
|
$(CC) -c $(CFLAGS) -I$(srcdir) -I$(srcdir)/../include -DMACHINE_H=\"${MACHINE}.h\" ${TCFLAGS} ${HCFLAGS} $<
|
||||||
|
|
||||||
all: ${PROG}
|
all: ${PROG}
|
||||||
|
|
||||||
@ -30,3 +32,12 @@ $(PROG): $(OBJS)
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm -f $(OBJS) core gprof nohup.out
|
-rm -f $(OBJS) core gprof nohup.out
|
||||||
|
# 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
|
||||||
|
Reference in New Issue
Block a user