summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 811a0fb5a8..02408b6ca6 100644
--- a/Makefile
+++ b/Makefile
@@ -739,9 +739,6 @@ ADD_ALL_EXESUFS = $(1) $(call ADDSUFFIXES,$(EXESUFS_ALL),$(1))
all: $(ALL_PRG-yes) locales
-%.ho: %.h
- $(CC) $(CFLAGS) -Wno-unused -c -o $@ -x c $<
-
%.o: %.S
$(CC) $(DEPFLAGS) $(CFLAGS) -c -o $@ $<
@@ -757,8 +754,6 @@ all: $(ALL_PRG-yes) locales
%-rc.o: %.rc
$(WINDRES) -I. $< $@
-checkheaders: $(ALLHEADERS:.h=.ho)
-
dep depend: $(DEPS)
mencoder$(EXESUF): $(MENCODER_DEPS)
@@ -792,6 +787,11 @@ locale/%/LC_MESSAGES/mplayer.mo: po/%.po
mkdir -p $(dir $@)
msgfmt -c -o $@ $<
+%.ho: %.h
+ $(CC) $(CFLAGS) -Wno-unused -c -o $@ -x c $<
+
+checkheaders: $(ALLHEADERS:.h=.ho)
+
###### dependency declarations / specific CFLAGS ######