CC=gcc
CFLAGS = -O3

all:	ld
ld:	ld.c coff.h
	$(CC) $(CFLAGS) -o ld ld.c

clean:
	\rm -f *.o ld

install:	all
	cp ld $(BINDIR)
