]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - Makefile.in
Merge branch 't/testsuite'
[paraslash.git] / Makefile.in
index a246f4c161832b7f182ea5a457cdc6d435768c4b..e6b6ecc27367d12f46d189c3c75036d09acc1bb6 100644 (file)
@@ -101,9 +101,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)
 
@@ -226,8 +227,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)