31f821669f
doxygen and graphviz are required. It's disabled by default, use the BUILD_API_DOCS make(1) argument to enable it. --HG-- extra : convert_revision : xtraeme%40gmail.com-20100123013719-pkk3a3823cx09v8l
38 lines
665 B
Makefile
38 lines
665 B
Makefile
include vars.mk
|
|
|
|
SUBDIRS = include lib bin
|
|
|
|
ifdef BUILD_API_DOCS
|
|
SUBDIRS += doc
|
|
endif
|
|
|
|
.PHONY: all
|
|
all:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir || exit 1; \
|
|
done
|
|
|
|
.PHONY: install
|
|
install:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir install || exit 1; \
|
|
done
|
|
@echo
|
|
@echo "Binaries have been installed into $(SBINDIR)."
|
|
@echo "Librares have been installed into $(LIBDIR)."
|
|
@echo
|
|
@echo "WARNING: Don't forget to rerun ldconfig(1)."
|
|
@echo
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir uninstall || exit 1; \
|
|
done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir clean || exit 1; \
|
|
done
|