blob: 640f4653e14de78ff4c303b2067df883b71201a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include ../Makefile.inc
LIBBZ = libbz2.so.1
all: $(LIBBZ)
$(LIBBZ): bzip.c
gcc -fPIC -shared -o $(LIBBZ) bzip.c
clean:
rm -f *.so.* *.o
install:
install $(LIBBZ) $(DESTDIR)/$(RUNTIMEDIR)
depend:
|