1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/utils/configcpp/md5/Makefile
2016-01-06 14:08:59 -06:00

40 lines
580 B
Makefile

include ../../../rules.mak
LIBRARY=libmd5.a
SRCS= md5_dgst.c md5_one.c mem_clr.c
CFLAGS+=$(DEBUG_FLAGS) -Wall -fpic
OBJS=$(SRCS:.c=.o)
$(LIBRARY): $(OBJS)
$(AR) scru $(LIBRARY) $(OBJS)
bootstrap:
install: bootstrap $(LIBRARY)
clean:
rm -f $(OBJS) core *~ *-gcov.* *.gcov *.d config.tag *.d.* $(LIBRARY)
rm -rf html
docs:
$(EXPORT_ROOT)/etc/Doxyfile
coverage:
test:
leakcheck:
%.d: %.c
@set -e; rm -f $@; \
$(CC) -MM $(CPPFLAGS) $< > $@.$$$$; \
sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
rm -f $@.$$$$
ifndef BOOTSTRAP
-include $(SRCS:.c=.d)
endif