diff options
Diffstat (limited to 'stubs/Makefile')
-rw-r--r-- | stubs/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/stubs/Makefile b/stubs/Makefile index 640f4653e..3aac5f14e 100644 --- a/stubs/Makefile +++ b/stubs/Makefile @@ -1,16 +1,21 @@ include ../Makefile.inc LIBBZ = libbz2.so.1 +LIBUTF8 = libunicode-lite.so.1 -all: $(LIBBZ) +all: $(LIBBZ) $(LIBUTF8) $(LIBBZ): bzip.c - gcc -fPIC -shared -o $(LIBBZ) bzip.c + gcc -fPIC -shared -o $@ $< + +$(LIBUTF8): unicode-lite.c + gcc -fPIC -shared -o $@ $< -lwlite clean: rm -f *.so.* *.o install: install $(LIBBZ) $(DESTDIR)/$(RUNTIMEDIR) + install $(LIBUTF8) $(DESTDIR)/$(RUNTIMEDIR) depend: |