summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/calypso/Makefile
blob: a2be3cfa1d56b105b982b2bc0d0e60ed983e8391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
INCLUDES=-I../include/
-include ../Makefile.inc

OBJS=arm.o clock.o dma.o dsp.o du.o i2c.o irq.o rtc.o spi.o tpu.o tsp.o keypad.o misc.o timer.o backlight.o uart.o

LST=$(OBJS:.o=.lst)

all:	libcalypso.a

%.o: %.c
	$(CROSS_COMPILE)$(CC) $(CFLAGS) -c -o $@ $^

libcalypso.a: $(OBJS)
	$(CROSS_COMPILE)$(AR) cru $@ $^

clean:
	rm -f *.a $(OBJS) $(LST)