diff --git a/Makefile b/Makefile index 22bbdcddac6e92bdcdee0ee561d33065d9fc47f7..8c9b79c1a4396529ef214d733da63fb4cb0a5fd5 100644 --- a/Makefile +++ b/Makefile @@ -102,6 +102,7 @@ CFLAGS = $(cflags-y) -Wall -Wstrict-prototypes \ -ffunction-sections -fdata-sections -Os -Wmissing-prototypes \ -include include/wrc.h -ggdb +# Assembler Flags ASFLAGS = -I. LDFLAGS = $(ldflags-y) \ diff --git a/sdb-lib/Makefile b/sdb-lib/Makefile index 469967349ea267e5e8ae9c9a24c87b31cb455d56..9bd32dfaaee821b5ebf658feb115117d1b1a7e8a 100644 --- a/sdb-lib/Makefile +++ b/sdb-lib/Makefile @@ -25,7 +25,6 @@ CFLAGS += -ffunction-sections -fdata-sections CFLAGS += -Wno-pointer-sign CFLAGS += $(ENDIAN) $(LINUXINCLUDE) - LIB = libsdbfs.a OBJS = glue.o access.o @@ -34,7 +33,7 @@ all: $(LIB) $(OBJS): $(wildcard *.h) $(LIB): $(OBJS) - $(AR) r $@ $(OBJS) + $(AR) rc $@ $(OBJS) clean: rm -f $(OBJS) $(LIB) *~ core