diff options
author | Erik Troan <ewt@redhat.com> | 2001-06-20 01:58:01 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-06-20 01:58:01 +0000 |
commit | dbb4861e176cadfb14c48313fd9922d3dbfcefed (patch) | |
tree | cdd243cceb8d7e4b2aeac075fbb21c5e096d1c66 /stubs/Makefile | |
parent | e4a41b5a1a08c2bd0e11b8a222d504f09f61b89a (diff) | |
download | anaconda-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/Makefile | 10 |
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: |