[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
non understood error message
From: |
Michael L Brown |
Subject: |
non understood error message |
Date: |
Thu, 28 Jun 2007 16:44:33 -0500 |
When doing our compile, the Sparc Solaris 8 version of gmake isn't complaining (thought it was and then mysteriously stopped), but the i386 Solaris 10 version is.
The error is:
Makefile:84: *** commands commence before first target. Stop.
The Makefile code segment is:
ifeq ($(ARCH),Linux)
CONSOLE_CFLAGS += -DHAS_READLINE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
CONSOLE_LDFLAGS += -lreadline -lncurses -lz
else
ifeq ($(ARCH),SunOS)
CONSOLE_CFLAGS +=
CONSOLE_LDFLAGS +=
AR := /usr/ccs/bin/ar ruv
INSTALL := cp -p
RANLIB := /usr/ccs/bin/ranlib
else
ifeq ($(ARCH),-sparc)
CONSOLE_CFLAGS +=
CONSOLE_LDFLAGS +=
AR := /usr/ccs/bin/ar ruv
INSTALL := cp -p
RANLIB := /usr/ccs/bin/ranlib
else
$(warning unknown architecture '$(ARCH)')
endif
endif
endif
Line 84 is: $(warning unknown architecture '$(ARCH)')
Any ideas as to why it is complaining?
Thanks.
MB
--
Mike Brown (address@hidden)
Lotus Bloats: Michael L Brown/MSN/MS/PHILIPS
Philips Medical, Fitchburg, WI
Desk: 608-288-6969 Fax: 608-298-2101
PMS direct: 164-6969
You design it, I'll build it!
- non understood error message,
Michael L Brown <=