blob: 50bb26e3f92a4beaa759e63ef853f5c975e4eb2c (
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../..
obj = label.o widget.o pagew.o strw.o textw.o
%.o: %.c %.h
$(CC) $(CFLAGS) -c $<
%.o: %.S
$(CC) $(CFLAGS) -c $<
all: $(obj)
clean:
rm -f *.o
|