summaryrefslogtreecommitdiff
blob: 0de155fbd03ad6b5702e5b545acbd35354522612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CFLAGS=-fPIC -shared

UFFI_LIBS=signals.so terminal_glue.so

all: $(UFFI_LIBS)

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

clean: 
	rm -f $(UFFI_LIBS) 

.PHONY: clean