Commit 372829bc authored by Adam Wujek's avatar Adam Wujek 💬

sdb-lib: don't print message whien archive is created

Don't print informational message to standard error when an archive is created.
Signed-off-by: Adam Wujek's avatarAdam Wujek <adam.wujek@cern.ch>
parent c26154d3
...@@ -102,6 +102,7 @@ CFLAGS = $(cflags-y) -Wall -Wstrict-prototypes \ ...@@ -102,6 +102,7 @@ CFLAGS = $(cflags-y) -Wall -Wstrict-prototypes \
-ffunction-sections -fdata-sections -Os -Wmissing-prototypes \ -ffunction-sections -fdata-sections -Os -Wmissing-prototypes \
-include include/wrc.h -ggdb -include include/wrc.h -ggdb
# Assembler Flags
ASFLAGS = -I. ASFLAGS = -I.
LDFLAGS = $(ldflags-y) \ LDFLAGS = $(ldflags-y) \
......
...@@ -25,7 +25,6 @@ CFLAGS += -ffunction-sections -fdata-sections ...@@ -25,7 +25,6 @@ CFLAGS += -ffunction-sections -fdata-sections
CFLAGS += -Wno-pointer-sign CFLAGS += -Wno-pointer-sign
CFLAGS += $(ENDIAN) $(LINUXINCLUDE) CFLAGS += $(ENDIAN) $(LINUXINCLUDE)
LIB = libsdbfs.a LIB = libsdbfs.a
OBJS = glue.o access.o OBJS = glue.o access.o
...@@ -34,7 +33,7 @@ all: $(LIB) ...@@ -34,7 +33,7 @@ all: $(LIB)
$(OBJS): $(wildcard *.h) $(OBJS): $(wildcard *.h)
$(LIB): $(OBJS) $(LIB): $(OBJS)
$(AR) r $@ $(OBJS) $(AR) rc $@ $(OBJS)
clean: clean:
rm -f $(OBJS) $(LIB) *~ core rm -f $(OBJS) $(LIB) *~ core
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment