From a70fd19af3280892419aa1855fe59e3dddad7e28 Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 10 Nov 2006 18:27:33 +0000 Subject: Use default variable names. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20841 b3059339-0415-0410-9bf9-f77b7e298cf2 --- loader/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'loader') diff --git a/loader/Makefile b/loader/Makefile index 658e412dd9..970741bb79 100644 --- a/loader/Makefile +++ b/loader/Makefile @@ -4,14 +4,14 @@ include ../config.mak 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 @@ distclean: clean .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: -- cgit v1.2.3