diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-12 17:02:54 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-12 17:02:54 +0000 |
commit | 7cda0fa73007027cc0c815e39958d4cdd00fb07f (patch) | |
tree | 786d86b3a36c2f3a38338bc643ea379597e7aead /loader | |
parent | fca7fbbc377849d3dd4678d86691e72920edb2ed (diff) | |
download | anaconda-7cda0fa73007027cc0c815e39958d4cdd00fb07f.tar.gz anaconda-7cda0fa73007027cc0c815e39958d4cdd00fb07f.tar.xz anaconda-7cda0fa73007027cc0c815e39958d4cdd00fb07f.zip |
reorder
Diffstat (limited to 'loader')
-rw-r--r-- | loader/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/loader/Makefile b/loader/Makefile index 0d59d29e5..2c5c85654 100644 --- a/loader/Makefile +++ b/loader/Makefile @@ -19,18 +19,18 @@ CFLAGS = $(DEBUG) $(OPTS) -Wall -D_GNU_SOURCE=1 -I/usr/include/rpm -I.. -DUSE_AL ALLOBJS = $(OBJS) $(PCMCIAOBJS) -ifeq (i386, $(ARCH)) -BINS += loader-local loader-network loader-pcmcia -DIRS += pcmcia-install -OBJS += stubs.o -endif - ifeq (1, $(KON)) DIRS += kon2 OBJS += ./kon2/src/libkon.a ./kon2/src/display.a ./kon2/lib/libgon.a CFLAGS += -DINCLUDE_KON=1 endif +ifeq (i386, $(ARCH)) +BINS += loader-local loader-network loader-pcmcia +DIRS += pcmcia-install +OBJS += stubs.o +endif + ifeq (alpha, $(ARCH)) BINS += loader endif |