diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-06-22 13:15:34 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-02 04:11:42 +0200 |
commit | fd7cf006b7bc26709e9784bfb97635e988d3f218 (patch) | |
tree | 32dd75610d7bb1b3f497022bcec18a12c6c05653 /Makefile | |
parent | 877c93becf2f621ff7aa744d8045a778a0673bc1 (diff) | |
download | mpv-fd7cf006b7bc26709e9784bfb97635e988d3f218.tar.bz2 mpv-fd7cf006b7bc26709e9784bfb97635e988d3f218.tar.xz |
Makefile: Move and comment the .SUFFIXES rule
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31528 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -21,8 +21,6 @@ include config.mak -.SUFFIXES: - ###### variable declarations ####### SRCS_AUDIO_INPUT-$(ALSA1X) += stream/ai_alsa1x.c @@ -1077,3 +1075,7 @@ endif .PHONY: all doxygen *install* *tools drivers dhahelper* .PHONY: checkheaders *clean dep depend tests + +# Disable suffix rules. Most of the builtin rules are suffix rules, +# so this saves some time on slow systems. +.SUFFIXES: |