X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=Makefile.in;h=c64b5ae7250ce5cceb178f39089319ae38894a11;hp=1a0c1fa34a3e7cecf0c5ee9cc77b34c4cda29d9f;hb=002115fc06853f219215319b3c7769ba6881a0b4;hpb=90560de0d7e4d825772270f9ac7cbefbb38aad97 diff --git a/Makefile.in b/Makefile.in index 1a0c1fa3..c64b5ae7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -14,7 +14,7 @@ build_date := $(shell date) uname_s := $(shell uname -s 2>/dev/null || echo "UNKNOWN_OS") uname_rs := $(shell uname -rs) cc_version := $(shell $(CC) --version | head -n 1) -codename := persistent regularity +codename := deterministic entropy DEBUG_CPPFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W DEBUG_CPPFLAGS += -Wredundant-decls @@ -99,9 +99,10 @@ else Q = @ endif -.PHONY: all clean distclean maintainer-clean install man tarball\ +.PHONY: dep all clean distclean maintainer-clean install man tarball\ .FORCE-GIT-VERSION-FILE -all: @executables@ $(man_pages) +all: dep @executables@ $(man_pages) +dep: $(deps) man: $(man_pages) tarball: $(tarball) @@ -224,8 +225,10 @@ all_objs := $(recv_objs) $(filter_objs) $(client_objs) $(gui_objs) \ $(audiod_objs) $(audioc_objs) $(fade_objs) $(server_objs) \ $(write_objs) $(afh_objs) +deps := $(all_objs:.o=.d) + ifeq ($(findstring clean, $(MAKECMDGOALS)),) --include $(all_objs:.o=.d) +-include $(deps) endif para_recv: $(recv_objs)