summaryrefslogtreecommitdiffstats
path: root/isys/Makefile
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-27 22:10:07 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-27 22:10:07 +0000
commit6edc4d8d72e65f00f44a7a84449b06cf19d4d70e (patch)
tree7db159f34f92df6181ae3f577b4f6a2869d4215a /isys/Makefile
parenta66e3186da07afe1d44f8d00a0b793da30af951d (diff)
downloadanaconda-6edc4d8d72e65f00f44a7a84449b06cf19d4d70e.tar.gz
anaconda-6edc4d8d72e65f00f44a7a84449b06cf19d4d70e.tar.xz
anaconda-6edc4d8d72e65f00f44a7a84449b06cf19d4d70e.zip
changes that would enable us to support ataraid across pdcraid, hptraid, and
silraid. unfortunately, until we can get a matching between ataraid dev and low-level ide devices, we can't filter drives and so don't want to really support yet. this does bring back our filtering to how it was in past releases for ataraid, which should help with the ataraid reports we've gotten for phoebe
Diffstat (limited to 'isys/Makefile')
-rw-r--r--isys/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/isys/Makefile b/isys/Makefile
index cfcf6c52f..99e754b31 100644
--- a/isys/Makefile
+++ b/isys/Makefile
@@ -4,7 +4,7 @@ CFLAGS = -ffunction-sections -I$(PYTHONINCLUDE) -I.. -Wall -Os -g -DHAVE_NFS -D
OBJECTS = nfsmount.o nfsmount_clnt.o nfsmount_xdr.o imount.o \
smp.o devnodes.o cpio.o probe.o uncpio.o \
- lang.o isofs.o pdc.o dns.o linkdetect.o
+ lang.o isofs.o dns.o linkdetect.o pdc.o hpt.o silraid.o
SOBJECTS = $(patsubst %.o,%.lo,$(OBJECTS))
SOURCES = $(patsubst %.o,%.c,$(OBJECTS)) isys.c
LOADLIBES = -lresolv -lpci -lpopt -lpump -lext2fs -lz
@@ -44,7 +44,7 @@ all: subdirs $(PYMODULES) libisys.a $(DIETLIB)
$(CC) -c $(CFLAGS) -fPIC -o $@ $<
%.do: %.c
- $(DIET) $(CC) -c $(CFLAGS) -DGZLIB=1 -DDIET=1 "-Du_char=unsigned char" -o $@ $<
+ $(DIET) $(CC) -c $(CFLAGS) -DDIET=1 "-Du_char=unsigned char" -o $@ $<
_isys.so: isys.lo $(SOBJECTS)
gcc -shared -g -o $@ isys.lo $(SOBJECTS) $(LOADLIBES)