]> git.sesse.net Git - vlc/blobdiff - Makefile.opts.in
* Mandatory step for video output IV and the audio output quality
[vlc] / Makefile.opts.in
index d36fe45ed6d6884c5bca5cdf81955cbdf4a151dc..eb4d17dadde8dbed344ca188a0b6fe0e5d8f872e 100644 (file)
 # the plugins in this line and put them as built-ins, otherwise your
 # application won't be able to load them.
 # 
-PLUGINS := @PLUGINS@
+PLUGINS :=@PLUGINS@
 
 # 
 # Built-in modules to build
 # WARNING: do NOT put gtk and gnome together in this rule.
 # 
-BUILTINS := @BUILTINS@
+BUILTINS :=@BUILTINS@
 
 # 
 # Additional build options
@@ -42,7 +42,10 @@ GETOPT = @GETOPT@
 # Build environment
 # 
 CC = @CC@
+CFLAGS = @CFLAGS@
 SHELL = @SHELL@
+RANLIB = @RANLIB@
+MOC = @MOC@
 
 # 
 # Installation environment
@@ -137,6 +140,10 @@ INCLUDE += -Iinclude -Iextras -I/usr/local/include
 #
 LIB += @LIB@ -L/usr/local/lib
 
+ifneq (,$(findstring mingw32,$(SYS)))
+LIB += -lws2_32
+endif
+
 #
 # Libraries needed by built-in modules
 #
@@ -228,7 +235,7 @@ endif
 #
 # Debugging and profiling support
 #
-ifeq ($(TRACE),1)
+ifeq ($(DEBUG),1)
 CFLAGS += -g
 endif