summaryrefslogtreecommitdiffstats
path: root/utils/Makefile
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-03-17 13:55:53 +0000
committerErik Troan <ewt@redhat.com>2000-03-17 13:55:53 +0000
commitd84b9f98997ef925e67e2050252ff03cbbc78e1f (patch)
tree46bd6f4a9e2d3ba12d9dba7db2ae484928c205a2 /utils/Makefile
parentaa24de5e709627504675dfc2bdf065d91293f965 (diff)
downloadanaconda-d84b9f98997ef925e67e2050252ff03cbbc78e1f.tar.gz
anaconda-d84b9f98997ef925e67e2050252ff03cbbc78e1f.tar.xz
anaconda-d84b9f98997ef925e67e2050252ff03cbbc78e1f.zip
don't build moddeps on ia64
Diffstat (limited to 'utils/Makefile')
-rw-r--r--utils/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile
index abc42a22e..8c7093ce2 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -1,8 +1,15 @@
+ARCH := $(patsubst i%86,i386,$(shell uname -m))
+ARCH := $(patsubst sparc%,sparc,$(ARCH))
+
LOADLIBES = -L../isys -lisys -lpopt
CFLAGS = -Wall -g
LDFLAGS = -g
-all: modlist moddeps genhdlist snarffont mapshdr readmap
+ifneq ($(ARCH),ia64)
+MODDEPS=moddeps
+endif
+
+all: modlist $(MODDEPS) genhdlist snarffont mapshdr readmap
moddeps: moddeps.o
$(CC) $(LDFLAGS) -o moddeps moddeps.o ../loader/modules.o \