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/console/Makefile.mipsel
2011-05-17 04:04:18 +00:00

17 lines
318 B
Makefile

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