[MPlayer-cvslog] r20841 - trunk/loader/Makefile

diego subversion at mplayerhq.hu
Fri Nov 10 19:27:34 CET 2006


Author: diego
Date: Fri Nov 10 19:27:33 2006
New Revision: 20841

Modified:
   trunk/loader/Makefile

Log:
Use default variable names.


Modified: trunk/loader/Makefile
==============================================================================
--- trunk/loader/Makefile	(original)
+++ trunk/loader/Makefile	Fri Nov 10 19:27:33 2006
@@ -4,14 +4,14 @@
 DEFINES=-DMPLAYER -D__WINE__ #-Ddbg_printf=__vprintf \
 	#-DTRACE=__vprintf # -DDETAILED_OUT
 
-ifeq ($(TARGET_WIN32),yes)
-LIB_OBJECTS= driver.o afl.o vfl.o
-else
-LIB_OBJECTS= ldt_keeper.o pe_image.o module.o ext.o win32.o \
-             driver.o pe_resource.o resource.o registry.o \
-             elfdll.o afl.o vfl.o wrapper.o
+SRCS= driver.c afl.c vfl.c
+ifneq ($(TARGET_WIN32),yes)
+SRCS+= ldt_keeper.c pe_image.c module.c ext.c win32.c \
+       pe_resource.c resource.c registry.c elfdll.c wrapper.S
 endif
 
+OBJS = $(SRCS:.c=.o)
+
 # gcc-3.0 produces buggy code for acmStreamOpen() with
 # "-O3 -fomit-frame-pointer" or "-O2 -fomit-frame-pointer
 # -finline-functions -frename-registers" (code is OK with sole -O2),
@@ -33,12 +33,12 @@
 .c.o:
 	$(CC) $(CFLAGS) $(DEFINES) -c $<
 
-libloader.a:  $(LIB_OBJECTS) stubs.s
+libloader.a:  $(OBJS) stubs.s
 	$(CC) -c ./stubs.s -o stubs.o
 ifeq ($(TARGET_OS),OpenBSD)
 	./loader_objfix.sh
 endif
-	$(AR) -r libloader.a $(LIB_OBJECTS) stubs.o
+	$(AR) -r libloader.a $(OBJS) stubs.o
 	$(RANLIB) libloader.a
 
 dep:



More information about the MPlayer-cvslog mailing list