Please get the latest version (3.79.1).
--
---
Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at:
http://www.gnu.org http://www.paulandlesley.org/gmake/
"Please remain calm...I
The simplest makefile I can write that demonstrates the problem I'm
encountering is:
TARGET = libfoo.a
SRCS = bar.c baz.c
OBJS = $(SRCS:%.c=%.o)
$(TARGET): $(TARGET)($(OBJS))
When I make, the first module is added to the archive, but when the
second is investigated, I get:
gmake
cc-c -
That solved it! Thank you much!
Tom.
"Paul D.
S