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