mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-01 17:47:30 +01:00
build: cleanup compiler output
Hide CFLAGS and LDFLAGS line noise each time an object file is compiled or linked. Also add a `make show-flags` command for displaying CC, LD, CFLAGS and LDFLAG information. This is shown at the start of each build. Use `V=1 make` to restore original output make CC: gcc -DBINTOPKGLIBEXECDIR="../libexec/c-lightning" -Wall [..] LD: gcc -Og -Lexternal -lwallycore -lsecp256k1 -ljsmn [..] ... cc wallet/test/run-db.c cc lightningd/test/run-jsonrpc.c cc lightningd/test/run-invoice-select-inchan.c cc lightningd/test/run-log-pruning.c cc lightningd/test/run-find_my_abspath.c cc cli/test/run-large-input.c cc cli/test/run-remove-hint.c ld lightningd/lightning_hsmd ld lightningd/lightning_gossipd ld lightningd/lightning_openingd ld lightningd/lightning_channeld ld lightningd/lightning_closingd ... Signed-off-by: William Casarin <jb55@jb55.com> Changelog-Changed: build: default compile output is prettier and much less verbose
This commit is contained in:
parent
75a93ec32f
commit
d6ede8db1b
1 changed files with 66 additions and 53 deletions
119
Makefile
119
Makefile
|
@ -21,6 +21,12 @@ BOLTVERSION := 4107c69e315b4f33d5b00459bef919bcfaa64bf2
|
||||||
|
|
||||||
SORT=LC_ALL=C sort
|
SORT=LC_ALL=C sort
|
||||||
|
|
||||||
|
ifeq ($V,1)
|
||||||
|
VERBOSE = echo $(2); $(2)
|
||||||
|
else
|
||||||
|
VERBOSE = echo $(1); $(2)
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq ($(VALGRIND),0)
|
ifneq ($(VALGRIND),0)
|
||||||
VG=VALGRIND=1 valgrind -q --error-exitcode=7
|
VG=VALGRIND=1 valgrind -q --error-exitcode=7
|
||||||
VG_TEST_ARGS = --track-origins=yes --leak-check=full --show-reachable=yes --errors-for-leak-kinds=all
|
VG_TEST_ARGS = --track-origins=yes --leak-check=full --show-reachable=yes --errors-for-leak-kinds=all
|
||||||
|
@ -217,7 +223,11 @@ ifeq ($(HAVE_POSTGRES),1)
|
||||||
LDLIBS += -lpq
|
LDLIBS += -lpq
|
||||||
endif
|
endif
|
||||||
|
|
||||||
default: all-programs all-test-programs doc-all
|
default: show-flags all-programs all-test-programs doc-all
|
||||||
|
|
||||||
|
show-flags:
|
||||||
|
@echo "CC: $(CC) $(CFLAGS) -c -o"
|
||||||
|
@echo "LD: $(LINK.o) $(filter-out %.a,$^) $(LOADLIBES) $(EXTERNAL_LDLIBS) $(LDLIBS) -o"
|
||||||
|
|
||||||
ccan/config.h: config.vars configure ccan/tools/configurator/configurator.c
|
ccan/config.h: config.vars configure ccan/tools/configurator/configurator.c
|
||||||
./configure --reconfigure
|
./configure --reconfigure
|
||||||
|
@ -226,6 +236,9 @@ config.vars:
|
||||||
@echo 'File config.vars not found: you must run ./configure before running make.' >&2
|
@echo 'File config.vars not found: you must run ./configure before running make.' >&2
|
||||||
@exit 1
|
@exit 1
|
||||||
|
|
||||||
|
%.o: %.c
|
||||||
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
|
|
||||||
include external/Makefile
|
include external/Makefile
|
||||||
include bitcoin/Makefile
|
include bitcoin/Makefile
|
||||||
include common/Makefile
|
include common/Makefile
|
||||||
|
@ -405,7 +418,7 @@ $(ALL_TEST_PROGRAMS): %: %.o
|
||||||
# uses some ccan modules internally). We want to rely on -lwallycore etc.
|
# uses some ccan modules internally). We want to rely on -lwallycore etc.
|
||||||
# (as per EXTERNAL_LDLIBS) so we filter them out here.
|
# (as per EXTERNAL_LDLIBS) so we filter them out here.
|
||||||
$(ALL_PROGRAMS) $(ALL_TEST_PROGRAMS):
|
$(ALL_PROGRAMS) $(ALL_TEST_PROGRAMS):
|
||||||
$(LINK.o) $(filter-out %.a,$^) $(LOADLIBES) $(EXTERNAL_LDLIBS) $(LDLIBS) -o $@
|
@$(call VERBOSE, "ld $@", $(LINK.o) $(filter-out %.a,$^) $(LOADLIBES) $(EXTERNAL_LDLIBS) $(LDLIBS) -o $@)
|
||||||
|
|
||||||
# Everything depends on the CCAN headers, and Makefile
|
# Everything depends on the CCAN headers, and Makefile
|
||||||
$(CCAN_OBJS) $(CDUMP_OBJS): $(CCAN_HEADERS) Makefile
|
$(CCAN_OBJS) $(CDUMP_OBJS): $(CCAN_HEADERS) Makefile
|
||||||
|
@ -580,7 +593,7 @@ installcheck: all-programs
|
||||||
@rm -rf testinstall || true
|
@rm -rf testinstall || true
|
||||||
|
|
||||||
.PHONY: installdirs install-program install-data install uninstall \
|
.PHONY: installdirs install-program install-data install uninstall \
|
||||||
installcheck ncc bin-tarball
|
installcheck ncc bin-tarball show-flags
|
||||||
|
|
||||||
# Make a tarball of opt/clightning/, optionally with label for distribution.
|
# Make a tarball of opt/clightning/, optionally with label for distribution.
|
||||||
bin-tarball: clightning-$(VERSION)-$(DISTRO).tar.xz
|
bin-tarball: clightning-$(VERSION)-$(DISTRO).tar.xz
|
||||||
|
@ -590,102 +603,102 @@ clightning-$(VERSION)-$(DISTRO).tar.xz: install
|
||||||
trap "rm -rf opt" 0; tar cvfa $@ opt/
|
trap "rm -rf opt" 0; tar cvfa $@ opt/
|
||||||
|
|
||||||
ccan-breakpoint.o: $(CCANDIR)/ccan/breakpoint/breakpoint.c
|
ccan-breakpoint.o: $(CCANDIR)/ccan/breakpoint/breakpoint.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-tal.o: $(CCANDIR)/ccan/tal/tal.c
|
ccan-tal.o: $(CCANDIR)/ccan/tal/tal.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-tal-str.o: $(CCANDIR)/ccan/tal/str/str.c
|
ccan-tal-str.o: $(CCANDIR)/ccan/tal/str/str.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-tal-link.o: $(CCANDIR)/ccan/tal/link/link.c
|
ccan-tal-link.o: $(CCANDIR)/ccan/tal/link/link.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-tal-path.o: $(CCANDIR)/ccan/tal/path/path.c
|
ccan-tal-path.o: $(CCANDIR)/ccan/tal/path/path.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-tal-grab_file.o: $(CCANDIR)/ccan/tal/grab_file/grab_file.c
|
ccan-tal-grab_file.o: $(CCANDIR)/ccan/tal/grab_file/grab_file.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-take.o: $(CCANDIR)/ccan/take/take.c
|
ccan-take.o: $(CCANDIR)/ccan/take/take.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-list.o: $(CCANDIR)/ccan/list/list.c
|
ccan-list.o: $(CCANDIR)/ccan/list/list.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-asort.o: $(CCANDIR)/ccan/asort/asort.c
|
ccan-asort.o: $(CCANDIR)/ccan/asort/asort.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-autodata.o: $(CCANDIR)/ccan/autodata/autodata.c
|
ccan-autodata.o: $(CCANDIR)/ccan/autodata/autodata.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-ptr_valid.o: $(CCANDIR)/ccan/ptr_valid/ptr_valid.c
|
ccan-ptr_valid.o: $(CCANDIR)/ccan/ptr_valid/ptr_valid.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-read_write_all.o: $(CCANDIR)/ccan/read_write_all/read_write_all.c
|
ccan-read_write_all.o: $(CCANDIR)/ccan/read_write_all/read_write_all.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-str.o: $(CCANDIR)/ccan/str/str.c
|
ccan-str.o: $(CCANDIR)/ccan/str/str.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-opt.o: $(CCANDIR)/ccan/opt/opt.c
|
ccan-opt.o: $(CCANDIR)/ccan/opt/opt.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-opt-helpers.o: $(CCANDIR)/ccan/opt/helpers.c
|
ccan-opt-helpers.o: $(CCANDIR)/ccan/opt/helpers.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-opt-parse.o: $(CCANDIR)/ccan/opt/parse.c
|
ccan-opt-parse.o: $(CCANDIR)/ccan/opt/parse.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-opt-usage.o: $(CCANDIR)/ccan/opt/usage.c
|
ccan-opt-usage.o: $(CCANDIR)/ccan/opt/usage.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-err.o: $(CCANDIR)/ccan/err/err.c
|
ccan-err.o: $(CCANDIR)/ccan/err/err.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-noerr.o: $(CCANDIR)/ccan/noerr/noerr.c
|
ccan-noerr.o: $(CCANDIR)/ccan/noerr/noerr.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-str-hex.o: $(CCANDIR)/ccan/str/hex/hex.c
|
ccan-str-hex.o: $(CCANDIR)/ccan/str/hex/hex.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-crc32c.o: $(CCANDIR)/ccan/crc32c/crc32c.c
|
ccan-crc32c.o: $(CCANDIR)/ccan/crc32c/crc32c.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-crypto-hmac.o: $(CCANDIR)/ccan/crypto/hmac_sha256/hmac_sha256.c
|
ccan-crypto-hmac.o: $(CCANDIR)/ccan/crypto/hmac_sha256/hmac_sha256.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-crypto-hkdf.o: $(CCANDIR)/ccan/crypto/hkdf_sha256/hkdf_sha256.c
|
ccan-crypto-hkdf.o: $(CCANDIR)/ccan/crypto/hkdf_sha256/hkdf_sha256.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-crypto-shachain.o: $(CCANDIR)/ccan/crypto/shachain/shachain.c
|
ccan-crypto-shachain.o: $(CCANDIR)/ccan/crypto/shachain/shachain.c
|
||||||
$(CC) $(CFLAGS) -DSHACHAIN_BITS=48 -c -o $@ $<
|
@$(call VERBOSE, "cc $< -DSHACHAIN_BITS=48", $(CC) $(CFLAGS) -DSHACHAIN_BITS=48 -c -o $@ $<)
|
||||||
ccan-crypto-sha256.o: $(CCANDIR)/ccan/crypto/sha256/sha256.c
|
ccan-crypto-sha256.o: $(CCANDIR)/ccan/crypto/sha256/sha256.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-crypto-ripemd160.o: $(CCANDIR)/ccan/crypto/ripemd160/ripemd160.c
|
ccan-crypto-ripemd160.o: $(CCANDIR)/ccan/crypto/ripemd160/ripemd160.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-cdump.o: $(CCANDIR)/ccan/cdump/cdump.c
|
ccan-cdump.o: $(CCANDIR)/ccan/cdump/cdump.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-strmap.o: $(CCANDIR)/ccan/strmap/strmap.c
|
ccan-strmap.o: $(CCANDIR)/ccan/strmap/strmap.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-crypto-siphash24.o: $(CCANDIR)/ccan/crypto/siphash24/siphash24.c
|
ccan-crypto-siphash24.o: $(CCANDIR)/ccan/crypto/siphash24/siphash24.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-htable.o: $(CCANDIR)/ccan/htable/htable.c
|
ccan-htable.o: $(CCANDIR)/ccan/htable/htable.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-ilog.o: $(CCANDIR)/ccan/ilog/ilog.c
|
ccan-ilog.o: $(CCANDIR)/ccan/ilog/ilog.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-intmap.o: $(CCANDIR)/ccan/intmap/intmap.c
|
ccan-intmap.o: $(CCANDIR)/ccan/intmap/intmap.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-isaac.o: $(CCANDIR)/ccan/isaac/isaac.c
|
ccan-isaac.o: $(CCANDIR)/ccan/isaac/isaac.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-isaac64.o: $(CCANDIR)/ccan/isaac/isaac64.c
|
ccan-isaac64.o: $(CCANDIR)/ccan/isaac/isaac64.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-time.o: $(CCANDIR)/ccan/time/time.c
|
ccan-time.o: $(CCANDIR)/ccan/time/time.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-timer.o: $(CCANDIR)/ccan/timer/timer.c
|
ccan-timer.o: $(CCANDIR)/ccan/timer/timer.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-io-io.o: $(CCANDIR)/ccan/io/io.c
|
ccan-io-io.o: $(CCANDIR)/ccan/io/io.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-io-poll.o: $(CCANDIR)/ccan/io/poll.c
|
ccan-io-poll.o: $(CCANDIR)/ccan/io/poll.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-io-fdpass.o: $(CCANDIR)/ccan/io/fdpass/fdpass.c
|
ccan-io-fdpass.o: $(CCANDIR)/ccan/io/fdpass/fdpass.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-pipecmd.o: $(CCANDIR)/ccan/pipecmd/pipecmd.c
|
ccan-pipecmd.o: $(CCANDIR)/ccan/pipecmd/pipecmd.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-mem.o: $(CCANDIR)/ccan/mem/mem.c
|
ccan-mem.o: $(CCANDIR)/ccan/mem/mem.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-fdpass.o: $(CCANDIR)/ccan/fdpass/fdpass.c
|
ccan-fdpass.o: $(CCANDIR)/ccan/fdpass/fdpass.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-bitops.o: $(CCANDIR)/ccan/bitops/bitops.c
|
ccan-bitops.o: $(CCANDIR)/ccan/bitops/bitops.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-rbuf.o: $(CCANDIR)/ccan/rbuf/rbuf.c
|
ccan-rbuf.o: $(CCANDIR)/ccan/rbuf/rbuf.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-str-base32.o: $(CCANDIR)/ccan/str/base32/base32.c
|
ccan-str-base32.o: $(CCANDIR)/ccan/str/base32/base32.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-utf8.o: $(CCANDIR)/ccan/utf8/utf8.c
|
ccan-utf8.o: $(CCANDIR)/ccan/utf8/utf8.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-bitmap.o: $(CCANDIR)/ccan/bitmap/bitmap.c
|
ccan-bitmap.o: $(CCANDIR)/ccan/bitmap/bitmap.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-membuf.o: $(CCANDIR)/ccan/membuf/membuf.c
|
ccan-membuf.o: $(CCANDIR)/ccan/membuf/membuf.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-json_escape.o: $(CCANDIR)/ccan/json_escape/json_escape.c
|
ccan-json_escape.o: $(CCANDIR)/ccan/json_escape/json_escape.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
ccan-json_out.o: $(CCANDIR)/ccan/json_out/json_out.c
|
ccan-json_out.o: $(CCANDIR)/ccan/json_out/json_out.c
|
||||||
$(CC) $(CFLAGS) -c -o $@ $<
|
@$(call VERBOSE, "cc $<", $(CC) $(CFLAGS) -c -o $@ $<)
|
||||||
|
|
Loading…
Add table
Reference in a new issue