1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-21 07:24:15 +02:00

makefile: Fix livedotcom on win32

This commit is contained in:
Christophe Mutricy 2006-03-02 20:11:51 +00:00
parent 91ef82f27f
commit d03eaf2b4a

View File

@ -1022,11 +1022,13 @@ ifeq ($(HOST),powerpc-apple-darwin8)
else
ifeq ($(HOST),powerpc-apple-darwin*)
(cd $<; ./genMakefiles macosx-before-version-10.4 && make )
elif defined( HAVE_WIN32 )
else
ifdef HAVE_WIN32
(cd $<;./genMakefiles mingw && make $(HOSTCC))
else
(cd $<;./genMakefiles linux && make )
endif
endif
endif
touch $@