diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-11-16 21:57:20 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-11-16 21:57:20 +0000 |
commit | 3c59c7c06925c977720f88e24eb041ccc21de6ba (patch) | |
tree | c1bbde9a24452d1719c0ae3788cc014d17194262 /collage | |
parent | 5f980bc081ad98b387079779fc336eb720d2946f (diff) | |
download | anaconda-3c59c7c06925c977720f88e24eb041ccc21de6ba.tar.gz anaconda-3c59c7c06925c977720f88e24eb041ccc21de6ba.tar.xz anaconda-3c59c7c06925c977720f88e24eb041ccc21de6ba.zip |
we only have the libisys-diet.a on i386 now...
Diffstat (limited to 'collage')
-rw-r--r-- | collage/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/collage/Makefile b/collage/Makefile index 38450774d..f20c76eed 100644 --- a/collage/Makefile +++ b/collage/Makefile @@ -1,8 +1,13 @@ include ../Makefile.inc +ISYSLIB=isys +ifeq ($(ARCH),i386) +ISYSLIB=isys-diet +endif + CFLAGS = -Wall -g -O2 LDFLAGS = -g -LOADLIBES = -L../isys -L../isys/gzlib -lisys -lgunzip -lresolv -lz +LOADLIBES = -L../isys -L../isys/gzlib -l$(ISYSLIB) -lgunzip -lresolv -lz ifeq (.depend,$(wildcard .depend)) TARGET=all |