summaryrefslogtreecommitdiffstats
path: root/stubs/Makefile
blob: e424e6facedd309daaf6ed73bf2ffb23cb09eea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
include ../Makefile.inc

LIBUTF8 = libunicode-lite.so.1

TARGETS= $(LIBUTF8)

all:	$(TARGETS)

$(LIBUTF8): unicode-lite.c
	gcc -fPIC -shared -o $@ $< -lwlite -D_FORTIFY_SOURCE=2

clean:
	rm -f *.so.* *.o

install:
	mkdir -p $(DESTDIR)/$(RUNTIMEDIR)
	for lib in $(TARGETS) ; do install $$lib $(DESTDIR)/$(RUNTIMEDIR) ; done

depend: