diff options
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/Makefile | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/mdk-stage1/Makefile b/mdk-stage1/Makefile index 2877960ab..b170b73d3 100644 --- a/mdk-stage1/Makefile +++ b/mdk-stage1/Makefile @@ -92,19 +92,8 @@ STAGE1OBJS-FULL = $(subst .c,-FULL.o,$(STAGE1_ALLSRC)) BINS = init stage1 dhcp-client rescue-gui probe-modules DIRS += pci-resource usb-resource -ifeq (i386, $(ARCH)) -DIRS += pcmcia pcmcia-resource -endif -ifeq (x86_64, $(ARCH)) +ifneq (,$(filter $(ARCH),i386 x86_64)) DIRS += pcmcia pcmcia-resource -endif - - -ifeq (i386,$(ARCH)) -PCMCIA_LIB = pcmcia/libpcmcia.a -PCMCIA_DEFS = -DENABLE_PCMCIA -endif -ifeq (x86_64,$(ARCH)) PCMCIA_LIB = pcmcia/libpcmcia.a PCMCIA_DEFS = -DENABLE_PCMCIA endif |