S.O.N.G/libtta
Archived
3
0
Fork 0
This repository has been archived on 2022-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
libtta/Makefile.mipsel
2011-05-17 04:04:18 +00:00

18 lines
366 B
Makefile

#
# $Id: Makefile,v 1.2 2010/05/25 00:00:00 root Exp $
#
GCC = $(ROOTFS)/host/bin/mipsel-linux-gcc
AR = $(ROOTFS)/host/bin/mipsel-linux-ar
CFLAGS = -Wall -mips32r2 -mtune=24kf -O2 -funroll-loops -fomit-frame-pointer
SRC = libtta.c
LIB = libtta
all: $(SRC)
$(GCC) -c $(CFLAGS) $(SRC) -o $(LIB).o
$(AR) rcs $(LIB).a $(LIB).o
clean:
rm -f *.o *.lo *.a