mirror of
https://github.com/mpv-player/mpv
synced 2025-03-23 11:47:45 +00:00
Disable old-style implicit rules to fix MinGW/Cygwin compilation
(mplayer-rc.o can not be generated). TO be improved or removed if/when someone figures out the issue. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30725 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
1783ce38f6
commit
70647bb9cb
10
Makefile
10
Makefile
@ -21,6 +21,7 @@
|
||||
|
||||
include config.mak
|
||||
|
||||
.SUFFIXES:
|
||||
|
||||
###### variable declarations #######
|
||||
|
||||
@ -837,6 +838,15 @@ all: $(ALL_PRG-yes)
|
||||
%.ho: %.h
|
||||
$(CC) $(CFLAGS) -Wno-unused -c -o $@ -x c $<
|
||||
|
||||
%.o: %.S
|
||||
$(CC) $(ASFLAGS) -c -o $@ $<
|
||||
|
||||
%.o: %.c
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
%.o: %.cpp
|
||||
$(CC) $(CXXFLAGS) -c -o $@ $<
|
||||
|
||||
%.o: %.m
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user