blob: 065cab0669c82915165fe24a62f4b039da9802f3 (
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 = clipb.o 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
|