1
0
mirror of https://github.com/golang/go synced 2024-10-05 16:31:21 -06:00
go/src/cmd/6l/Makefile
Russ Cox f5690004c2 6l, 8l: support for linking ELF and Mach-O .o files
More support for references to dynamic symbols,
including full GOT and PLT for ELF objects.

For Mach-O everything ends up in the GOT: dealing
with the real lazy PLT is too hard for now so we punt.

R=iant, iant2
CC=golang-dev
https://golang.org/cl/3491042
2010-12-08 13:56:43 -05:00

46 lines
612 B
Makefile

# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
include ../../Make.inc
O:=$(HOST_O)
TARG=6l
OFILES=\
asm.$O\
data.$O\
dwarf.$O\
elf.$O\
enam.$O\
go.$O\
ldelf.$O\
ldmacho.$O\
lib.$O\
list.$O\
macho.$O\
obj.$O\
optab.$O\
pass.$O\
prof.$O\
span.$O\
symtab.$O\
HFILES=\
l.h\
../6l/6.out.h\
../ld/lib.h\
../ld/elf.h\
../ld/macho.h\
../ld/dwarf.h\
include ../../Make.ccmd
enam.c: 6.out.h
sh mkenam
CLEANFILES+=enam.c
%.$O: ../ld/%.c
$(HOST_CC) $(HOST_CFLAGS) -c -I. ../ld/$*.c