URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mw/] [src/] [contrib/] [GPL/] [tpcal/] [Makefile] - Rev 1765
Compare with Previous | Blame | View Log
#CC = mipsel-linux-gcc -msoft-float -s
CC = gcc
CFLAGS = -Wall -I../../../include -I../../../drivers -L../../../lib
LIBS = -lmwin -lmwinlib -lmwengine -lmwdrivers -lmwfonts
OBJECTS = tpcal.o transform.o
all: tpcal
tpcal: $(OBJECTS)
$(CC) $(CFLAGS) $(OBJECTS) $(LIBS) -o tpcal
clean:
rm -f *.o tpcal