summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-02-16 17:39:26 +0100
committerMatúš Kukan <matus.kukan@gmail.com>2012-02-16 17:39:26 +0100
commitca9801809249dbc98b28d3a24325fa54f2e91724 (patch)
treecc9d99eed1e4ee4138d5752342b9c09d98086799 /Makefile
parentd90fd406fd8b9a0e03a5284673304008166a8b7e (diff)
let src.downloaded not depend on phony target to avoid re-creating each time
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 99cae2613c60..7ef08423c7b7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-.PHONY : all autogen bootstrap build check clean clean-build clean-host dev-install dev-install-link distclean distro-pack-install docs fetch findunusedcode id install subsequenttest tags
+.PHONY : all bootstrap build check clean clean-build clean-host dev-install dev-install-link distclean distro-pack-install docs fetch findunusedcode id install subsequenttest tags
ifeq ($(MAKECMDGOALS),)
MAKECMDGOALS:=all
@@ -332,9 +332,8 @@ endif
ifneq ($(filter-out clean distclean,$(MAKECMDGOALS)),)
#
-# autogen
+# Makefile
#
-autogen: Makefile
# I don't like to touch stuff that are supposed to be
# in the source tree, hence read-only
@@ -354,7 +353,7 @@ config_host.mk : config_host.mk.in bin/repo-list.in ooo.lst.in configure.in auto
#
fetch: src.downloaded
-src.downloaded : autogen ooo.lst download
+src.downloaded : Makefile ooo.lst download
ifeq ($(DO_FETCH_TARBALLS),YES)
@./download $(SRCDIR)/ooo.lst && touch $@
else