diff options
author | Bill Nottingham <notting@redhat.com> | 2007-12-19 14:55:45 -0500 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2007-12-19 14:55:45 -0500 |
commit | c5f05bd14aafee4bbca5627ae84c77f3abb83340 (patch) | |
tree | 224c03f79d01466ee3980a01e987082753bd12a5 /utils/Makefile | |
parent | 7971fbec83064b096a6592055d66df573bdb8eea (diff) | |
download | anaconda-c5f05bd14aafee4bbca5627ae84c77f3abb83340.tar.gz anaconda-c5f05bd14aafee4bbca5627ae84c77f3abb83340.tar.xz anaconda-c5f05bd14aafee4bbca5627ae84c77f3abb83340.zip |
Remove obsolete bits that we no longer need with module trees.
Diffstat (limited to 'utils/Makefile')
-rw-r--r-- | utils/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/utils/Makefile b/utils/Makefile index 24d1a81fd..78acd770a 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -29,7 +29,7 @@ LOADLIBES = -lpopt CFLAGS += -I.. -I$(LOADERDIR) -fno-strict-aliasing RPMCFLAGS = $(CFLAGS) -I/usr/include/rpm -UTILS = modlist moddeps snarffont mapshdr readmap +UTILS = modlist snarffont mapshdr readmap ifeq (s390, $(ARCH)) UTILS += geninitrdsz endif @@ -58,10 +58,6 @@ moduledeps.o: $(LOADERDIR)/moduledeps.c cp $(LOADERDIR)/moduledeps.c ./ $(CC) $(CFLAGS) -c moduledeps.c -moddeps: moddeps.o moduledeps.o - $(CC) $(LDFLAGS) -o moddeps moddeps.o moduledeps.o \ - $(LOADLIBES) -lresolv -lpopt -lbz2 - md5.o: md5.c md5.h gcc -c -O -g md5.c -D_FORTIFY_SOURCE=2 @@ -77,10 +73,7 @@ install: all mkdir -p $(DESTDIR)/usr/bin mkdir -p $(DESTDIR)/$(RUNTIMEDIR) install -m755 genmodinfo $(DESTDIR)/$(RUNTIMEDIR) - install -m755 trimmodalias $(DESTDIR)/$(RUNTIMEDIR) install -m755 trimpciids $(DESTDIR)/$(RUNTIMEDIR) - install -m755 moddeps $(DESTDIR)/$(RUNTIMEDIR) - install -m755 filtermoddeps $(DESTDIR)/$(RUNTIMEDIR) install -m755 modlist $(DESTDIR)/$(RUNTIMEDIR) install -m755 readmap $(DESTDIR)/$(RUNTIMEDIR) install -m755 mapshdr $(DESTDIR)/$(RUNTIMEDIR) @@ -89,7 +82,7 @@ install: all fi clean: - rm -f modlist moddeps snarffont mapshdr readmap geninitrdsz \ + rm -f modlist snarffont mapshdr readmap geninitrdsz \ moduledeps.c moduleinfo.c .depend *.o depend: |