| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- SHELL = @SHELL@
- top_srcdir = @top_srcdir@
- srcdir = @srcdir@
- VPATH = @srcdir@
- @SET_MAKE@
- #include $(top_srcdir)/build/build.mk
- .PHONY: default clean distclean normal debug general buildcheck notice notice_debug build units libelf libelf_notice
- default: normal
- clean:
- -+@cd bdlib && $(MAKE) clean
- -+@test -f libelf/Makefile && cd libelf && $(MAKE) clean
- @rm -f *.a
- distclean: clean
- -+@cd bdlib && $(MAKE) distclean
- -+@test -f libelf/Makefile && cd libelf && $(MAKE) distclean
- notice:
- @echo "[*] Making libraries"
- notice_debug:
- @echo "[*] Making libraries (debug)"
- normal: general notice build
- debug: general notice_debug build.debug
- general:
- libelf_notice:
- @echo "[*] Building libelf"
- $(top_srcdir)/lib/libelf/lib/libelf.a: libelf_notice
- +@cd libelf/lib && $(MAKE) libelf.a
- libelf: @LIBELF_BUNDLED@
- build:
- +@cd bdlib && $(MAKE) bdlib
- +@$(MAKE) libelf
- build.debug:
- +@cd bdlib && $(MAKE) debug
- +@$(MAKE) libelf
- buildcheck: build
- units:
- # +@cd bdlib/tests && $(MAKE) units
|