diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-09 22:38:20 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-09 22:38:20 +0000 |
commit | 0b65ed88a5f65eee9abd9723219abb61dad1edda (patch) | |
tree | f29d44bd6eb576f2ad602037de638c465da7a7cd /loader | |
parent | 1f8bab759cf80d0d2794f0dbdf65a41cfe24e2ce (diff) | |
download | anaconda-0b65ed88a5f65eee9abd9723219abb61dad1edda.tar.gz anaconda-0b65ed88a5f65eee9abd9723219abb61dad1edda.tar.xz anaconda-0b65ed88a5f65eee9abd9723219abb61dad1edda.zip |
no stubs on alpha for now
Diffstat (limited to 'loader')
-rw-r--r-- | loader/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/loader/Makefile b/loader/Makefile index 7da19cd0f..e9af5797c 100644 --- a/loader/Makefile +++ b/loader/Makefile @@ -3,7 +3,7 @@ DESTDIR = ../../trees/initrd ARCH := $(patsubst i%86,i386,$(shell uname -m)) ARCH := $(patsubst sparc%,sparc,$(ARCH)) -OBJS = stubs.o log.o windows.o modules.o devices.o cdrom.o urls.o kickstart.o +OBJS = log.o windows.o modules.o devices.o cdrom.o urls.o kickstart.o LOADEROBJS = loader.o loader-pcmcia.o popen.o SOURCES = $(subst .o,.c,$(OBJS) $(LOADEROBJS)) BINS = init @@ -16,6 +16,7 @@ ALLOBJS = $(OBJS) $(PCMCIAOBJS) ifeq (i386, $(ARCH)) BINS += loader-local loader-network loader-pcmcia DIRS += pcmcia-install +OBJS += stubs.o endif ifeq (alpha, $(ARCH)) @@ -24,6 +25,7 @@ endif ifeq (sparc, $(ARCH)) BINS += loader +OBJS += stubs.o endif ifeq (.depend,$(wildcard .depend)) |