diff options
author | scop <scop> | 2005-03-14 14:02:54 +0000 |
---|---|---|
committer | scop <scop> | 2005-03-14 14:02:54 +0000 |
commit | 37a9893a18cb218d5ab53ad8805348687bcc808d (patch) | |
tree | 605f9e720088a44c929dcb9f56a7f91433d351fc | |
parent | 199be12e1e23d7d741e49ea3495cf9dc5f44bdbb (diff) | |
download | vdr-plugin-dxr3-37a9893a18cb218d5ab53ad8805348687bcc808d.tar.gz vdr-plugin-dxr3-37a9893a18cb218d5ab53ad8805348687bcc808d.tar.bz2 |
Make "all" the default target in Makefile.
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | Makefile | 8 |
2 files changed, 6 insertions, 3 deletions
@@ -244,3 +244,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 - use $CXX for generating dependencies instead of hardcoded g++ - added descriptions to audio and video output threads - fixed audio and video thread deletion in demux device destructor +- made "all" the default target in Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.1.2.2 2005/03/14 11:21:29 scop Exp $ +# $Id: Makefile,v 1.1.2.3 2005/03/14 14:02:54 scop Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -63,6 +63,10 @@ dxr3log.o dxr3ffmpeg.o dxr3interface_spu_encoder.o dxr3i18n.o \ dxr3interface.o dxr3device.o dxr3outputthread.o dxr3osd.o dxr3osd_subpicture.o dxr3spudecoder.o dxr3unixserversocket.o \ dxr3cpu.o dxr3memcpy.o +### Default target: + +all: libvdr-$(PLUGIN).so + ### Implicit rules: %.o: %.c @@ -79,8 +83,6 @@ $(DEPFILE): Makefile ### Targets: -all: libvdr-$(PLUGIN).so - libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -o $@ @cp $@ $(LIBDIR)/$@.$(VDRVERSION) |