
CFLAGS=-O0 -g

all: test

clean:
	sh -c 'rm -f *.o test'

%.c.o: %.c
	cc $(CFLAGS) -c $< -o $@

%.S.o: %.S
	as $< -o $@

OBJS=f.S.o gcd.S.o test.c.o

test: $(OBJS)
	cc $(OBJS) -o $@
