summaryrefslogtreecommitdiffstats
path: root/stubs/Makefile
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-06-20 01:58:01 +0000
committerErik Troan <ewt@redhat.com>2001-06-20 01:58:01 +0000
commitdbb4861e176cadfb14c48313fd9922d3dbfcefed (patch)
treecdd243cceb8d7e4b2aeac075fbb21c5e096d1c66 /stubs/Makefile
parente4a41b5a1a08c2bd0e11b8a222d504f09f61b89a (diff)
downloadanaconda-dbb4861e176cadfb14c48313fd9922d3dbfcefed.tar.gz
anaconda-dbb4861e176cadfb14c48313fd9922d3dbfcefed.tar.xz
anaconda-dbb4861e176cadfb14c48313fd9922d3dbfcefed.zip
merge from (now defunct) anaconda-dispatch branch
Diffstat (limited to 'stubs/Makefile')
-rw-r--r--stubs/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/stubs/Makefile b/stubs/Makefile
index 05e763054..640f4653e 100644
--- a/stubs/Makefile
+++ b/stubs/Makefile
@@ -1,14 +1,16 @@
include ../Makefile.inc
-all: libbz2.so.0
+LIBBZ = libbz2.so.1
-libbz2.so.0: bzip.c
- gcc -fPIC -shared -o libbz2.so.0 bzip.c
+all: $(LIBBZ)
+
+$(LIBBZ): bzip.c
+ gcc -fPIC -shared -o $(LIBBZ) bzip.c
clean:
rm -f *.so.* *.o
install:
- install libbz2.so.0 $(DESTDIR)/$(RUNTIMEDIR)
+ install $(LIBBZ) $(DESTDIR)/$(RUNTIMEDIR)
depend: