25 lines
608 B
Makefile
25 lines
608 B
Makefile
# $Id: Makefile,v 1.4 1995/01/07 23:08:36 mycroft Exp $
|
|
|
|
LIB= bfd
|
|
NOPROFILE=
|
|
NOPIC=
|
|
|
|
CFLAGS+= -I$(.CURDIR)/arch/$(MACHINE_ARCH) -I$(.CURDIR) \
|
|
-I$(.CURDIR)/../include
|
|
.PATH: $(.CURDIR)/arch/$(MACHINE_ARCH)
|
|
|
|
SRCS= archive.c archures.c bfd.c cache.c coffgen.c core.c ctor.c \
|
|
format.c init.c libbfd.c opncls.c reloc.c seclet.c section.c \
|
|
syms.c targets.c ecoff.c elf.c srec.c aout32.c \
|
|
stab-syms.c netbsd-core.c
|
|
|
|
.include "arch/$(MACHINE_ARCH)/Makefile.inc"
|
|
|
|
targets.o archures.o: $(.CURDIR)/$(.TARGET:S/.o$/.c/)
|
|
${COMPILE.c} $(VECTORS) -o $(.TARGET) $(.IMPSRC)
|
|
|
|
|
|
install:
|
|
|
|
.include <bsd.lib.mk>
|