shithub: scc

ref: 994751d39485e086ef623f202fb1b84729fd5d19
dir: /tests/ld/execute/Makefile/

View raw version
AS = z80-unknown-coff-as
AR = ../../../bin/scc-ar
LD = ../../../bin/scc-ld
RL = ../../../bin/scc-ranlib
SZ = ../../../bin/scc-size

OBJS   = f1.o f2.o
OBJLIB = f3.o

all test: a.out

a.out: $(OBJS) f.a
	$(LD) $(OBJS) f.a

f.a: $(OBJLIB)
	$(AR) -rv $@ $?

size:
	$(SZ) *.o *.a

clean:
	rm -f *.o *.a a.out core* *.dat