]> git.wh0rd.org - ICEs.git/blame - bfin-bss/Makefile
add bfin ice
[ICEs.git] / bfin-bss / Makefile
CommitLineData
45516216 1CC = bfin-uclinux-gcc
2CFLAGS = -mfdpic -Wall
3LDFLAGS = -mfdpic
4
5all: libfoo.so
6
7libfoo.so: one.o two.o three.o
8 $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^
9
10clean:
11 rm -f *.o *.so
12
13.PHONY: all clean