Commit 8d853efe authored by Mans Rullgard's avatar Mans Rullgard

build: move special targets to end of main Makefile

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 41b68dce
......@@ -145,5 +145,13 @@ check: test checkheaders
include doc/Makefile
include tests/Makefile
# Dummy rule to stop make trying to rebuild removed or renamed headers
%.h:
@:
# Disable suffix rules. Most of the builtin rules are suffix rules,
# so this saves some time on slow systems.
.SUFFIXES:
.PHONY: all alltools *clean check config examples install*
.PHONY: testprogs uninstall*
......@@ -43,14 +43,6 @@ HOSTCFLAGS += $(IFLAGS)
%.c %.h: TAG = GEN
# Dummy rule to stop make trying to rebuild removed or renamed headers
%.h:
@:
# Disable suffix rules. Most of the builtin rules are suffix rules,
# so this saves some time on slow systems.
.SUFFIXES:
endif
OBJS-$(HAVE_MMX) += $(MMX-OBJS-yes)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment