X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=Makefile.in;h=34992de8514fdce7e4c02f83d9b1e478025d091d;hp=e4a3dd3f068f72bf2ff8655e5c8a482f87c68dc7;hb=04d57a4d05ce0a0f8d16c32d14d056e312527808;hpb=f113a41a633c0541f0d8418baf40205f4553c885 diff --git a/Makefile.in b/Makefile.in index e4a3dd3f..34992de8 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 := concurrent horizon +codename := imaginary radiation DEBUG_CPPFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W DEBUG_CPPFLAGS += -Wredundant-decls @@ -61,11 +61,8 @@ CPPFLAGS += -I$(cmdline_dir) CPPFLAGS += @osl_cppflags@ CPPFLAGS += -DGIT_VERSION='"$(GIT_VERSION)"' -BINARIES = para_server para_client para_audioc para_recv \ - para_filter para_write para_afh @extra_binaries@ -man_binaries := $(BINARIES) -man_pages := $(patsubst %, man/man1/%.1, $(man_binaries)) -man_pages_in := $(patsubst %, web/%.man.in.html, $(man_binaries)) +man_pages := $(patsubst %, man/man1/%.1, @executables@) +man_pages_in := $(patsubst %, web/%.man.in.html, @executables@) ggo_dir := ggo object_dir := objects @@ -104,14 +101,14 @@ endif .PHONY: all clean distclean maintainer-clean install man tarball\ .FORCE-GIT-VERSION-FILE -all: $(BINARIES) $(man_pages) +all: @executables@ $(man_pages) man: $(man_pages) tarball: $(tarball) GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE @./GIT-VERSION-GEN GIT-VERSION-FILE -include GIT-VERSION-FILE -$(BINARIES): GIT-VERSION-FILE +@executables@: GIT-VERSION-FILE -include $(ggo_dir)/makefile @@ -210,7 +207,10 @@ afh_objs := $(addprefix $(object_dir)/, @afh_objs@) all_objs := $(recv_objs) $(filter_objs) $(client_objs) $(gui_objs) \ $(audiod_objs) $(audioc_objs) $(fade_objs) $(server_objs) \ $(write_objs) $(afh_objs) + +ifeq ($(findstring clean, $(MAKECMDGOALS)),) -include $(all_objs:.o=.d) +endif para_recv: $(recv_objs) @[ -z "$(Q)" ] || echo 'LD $@' @@ -254,7 +254,7 @@ para_afh: $(afh_objs) clean: @[ -z "$(Q)" ] || echo 'CLEAN' - $(Q) rm -f $(BINARIES) $(object_dir)/*.o + $(Q) rm -f @executables@ $(object_dir)/*.o clean2: clean @[ -z "$(Q)" ] || echo 'CLEAN2' @@ -275,7 +275,7 @@ maintainer-clean: distclean install: all man mkdir -p $(BINDIR) $(MANDIR) - $(install_sh) -s -m 755 $(BINARIES) $(BINDIR) + $(install_sh) -s -m 755 @executables@ $(BINDIR) $(install_sh) -m 644 $(man_pages) $(MANDIR) mkdir -p $(VARDIR) >/dev/null 2>&1 || true # not fatal, so don't complain