prog.mk: don't redirect stderr to /dev/null for static linking.

It's useful to see some possible errors.
This commit is contained in:
Juan RP 2010-05-04 15:04:06 +02:00
parent 9fe20ccbc8
commit f4c03c11ff

View File

@ -35,7 +35,7 @@ endif
$(BIN).static: $(OBJS)
@printf " [CCLD]\t\t$@\n"
@$(CC) -static $^ $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) \
$(STATIC_LIBS) -o $@ >/dev/null 2>&1
$(STATIC_LIBS) -o $@
$(BIN): $(OBJS)
@printf " [CCLD]\t\t$@\n"