summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2012-05-18 08:41:26 +0200
committerDimitar Petrovski <dimeptr@gmail.com>2012-05-18 08:41:26 +0200
commit16676f55d7aabc55a7b2894dbdf79a462749767f (patch)
treeaf7ac2254d0682b4d3f1da1a0b5f02be3da2f54e /Makefile
parente7383edb0b991c6f3f185fbdf1b09cb485780b36 (diff)
parent27fd448d11b6eda6b72d294b73d42a54e1891ad9 (diff)
downloadvdr-plugin-eepg-16676f55d7aabc55a7b2894dbdf79a462749767f.tar.gz
vdr-plugin-eepg-16676f55d7aabc55a7b2894dbdf79a462749767f.tar.bz2
Merge branch 'experimental'
Conflicts: eepg.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3319320..19c0684 100644
--- a/Makefile
+++ b/Makefile
@@ -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"):
@@ -64,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
@@ -77,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