From 7c6b0d167cdccd79c51d69ce6c938f1128fe7cda Mon Sep 17 00:00:00 2001 From: Dimitar Petrovski Date: Fri, 29 Apr 2011 22:19:51 +0200 Subject: remove some warnings --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3319320..d5a15f4 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -O2 -fPIC -Wall -Woverloaded-virtual +CXXFLAGS ?= -O2 -fPIC -Wall -Woverloaded-virtual -Wno-unused-result ### The directory environment: -- cgit v1.2.3 From d202a909ef2601729f81e8f4720a3d384092652a Mon Sep 17 00:00:00 2001 From: Dimitar Petrovski Date: Sun, 15 May 2011 01:51:54 +0200 Subject: Changed loging so that in can be modified (decorated) in the future Removed warnings Refactored some code fixed MHW1 so all summaries that are present are included --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d5a15f4..4d28ef7 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The C++ compiler and options: CXX ?= g++ -CXXFLAGS ?= -O2 -fPIC -Wall -Woverloaded-virtual -Wno-unused-result +CXXFLAGS ?= -O2 -fPIC -Wall -Woverloaded-virtual ### The directory environment: @@ -42,6 +42,7 @@ TMPDIR = /tmp ### Allow user defined options to overwrite defaults: -include $(VDRDIR)/Make.config +-include Make.config ### The version number of VDR (taken from VDR's "config.h"): -- cgit v1.2.3 From 9c53646dc79a1447fd3201b37412108d7f94ea28 Mon Sep 17 00:00:00 2001 From: Dimitar Petrovski Date: Wed, 14 Sep 2011 16:10:56 +0200 Subject: fix compile --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4d28ef7..19c0684 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' ### The object files (add further files here): -OBJS = $(PLUGIN).o +OBJS = $(PLUGIN).o dish.o ifdef DBG CXXFLAGS += -g @@ -78,7 +78,10 @@ I18Npot = $(PODIR)/$(PLUGIN).pot I18Nmsgs = $(addprefix $(LOCALEDIR)/,$(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo,$(notdir $(foreach file, $(wildcard $(PODIR)/*.po), $(basename $(file)))))) LOCALEDIR = $(VDRDIR)/locale -# Dependencies: +### Default Target +default: $(OBJS) + +### Dependencies: MAKEDEP = $(CXX) -MM -MG DEPFILE = .dependencies -- cgit v1.2.3