blob: 7659ef0251f3d2cca9ca294de3dc31af0fe2da93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include ../../../common.mk
CFLAGS += -I.. -I../.. -I../../../include -I../../../drivers
obj = font.o text.o
%.o: %.c %.h
$(CC) $(CFLAGS) -c $<
%.o: %.S
$(CC) $(CFLAGS) -c $<
all: $(obj)
clean:
rm -f *.o
|