History | View | Annotate | Download (170 Bytes)
CFLAGS+=-O3
SRC=$(wildcard *.c)
OBJS=$(SRC:.c=.o)
all: $(OBJS)
$(AR) $(ARFLAGS) libmatrix.a $(OBJS)
clean:
rm -f *.o *.a
$(MAKE) -C Test/ clean
.PHONY: all clean