summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--Makefile8
2 files changed, 6 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index a472d98..a6ce3a3 100644
--- a/HISTORY
+++ b/HISTORY
@@ -274,6 +274,7 @@ NOTE: I havent found time to include all of the languages, will be done in pre2
- removed explicit linking with zlib (Christian Gmeiner)
- compiles now with 3.4.x gcc's (Christian Gmeiner, Ville Skyttä)
- use $CXX for generating dependencies instead of hardcoded g++ (Ville Skyttä)
+- made "all" the default target in Makefile (Ville Skyttä)
- assume SSE support implies MMXEXT support, this enables optimized
memcpy routines on more systems (Ville Skyttä)
- fix compilation with -fPIC, kudos to ffmpeg (Ville Skyttä)
diff --git a/Makefile b/Makefile
index 227c8bf..890c05d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile,v 1.13 2005/03/14 20:48:04 scop Exp $
+# $Id: Makefile,v 1.14 2005/03/22 16:34:20 scop Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -62,6 +62,10 @@ dxr3log.o dxr3ffmpeg.o dxr3spuencoder.o dxr3i18n.o \
dxr3interface.o dxr3device.o dxr3outputthread.o dxr3osd.o dxr3osd_subpicture.o dxr3spudecoder.o dxr3unixserversocket.o \
dxr3cpu.o dxr3memcpy.o dxr3dolbydigital.o
+### Default target:
+
+all: libvdr-$(PLUGIN).so
+
### Implicit rules:
%.o: %.c
@@ -78,8 +82,6 @@ $(DEPFILE): Makefile
### Targets:
-all: libvdr-$(PLUGIN).so
-
libvdr-$(PLUGIN).so: $(OBJS)
$(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -o $@
@cp $@ $(LIBDIR)/$@.$(VDRVERSION)