summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-24 20:19:29 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-24 20:19:29 +0000
commitd7a50788dfe10edf0e5801077c04c5a425cb44e0 (patch)
tree6dbc8f99fd8ef5a554d22c7be935527eab54bb34 /loader
parent1383d92f0a914f44314f2a4a2d98de135a3d5970 (diff)
downloadmpv-d7a50788dfe10edf0e5801077c04c5a425cb44e0.tar.bz2
mpv-d7a50788dfe10edf0e5801077c04c5a425cb44e0.tar.xz
Clean up CFLAGS handling.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21194 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/Makefile9
1 files changed, 3 insertions, 6 deletions
diff --git a/loader/Makefile b/loader/Makefile
index 11ad63fca2..410713deb4 100644
--- a/loader/Makefile
+++ b/loader/Makefile
@@ -1,10 +1,7 @@
include ../config.mak
-# Generated automatically from Makefile.in by configure.
-DEFINES=-DMPLAYER -D__WINE__ #-Ddbg_printf=__vprintf \
- #-DTRACE=__vprintf # -DDETAILED_OUT
-
-CFLAGS=-I. -I.. $(OPTFLAGS)
+CFLAGS=-I. -I.. -DMPLAYER -D__WINE__ $(OPTFLAGS)
+#CFLAGS+=-Ddbg_printf=__vprintf -DTRACE=__vprintf -DDETAILED_OUT
SRCS= driver.c afl.c vfl.c
ifneq ($(TARGET_WIN32),yes)
@@ -23,7 +20,7 @@ clean:
distclean: clean
.c.o:
- $(CC) $(CFLAGS) $(DEFINES) -c $<
+ $(CC) $(CFLAGS) -c $<
libloader.a: $(OBJS) stubs.s
$(CC) -c ./stubs.s -o stubs.o