diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2011-09-14 16:10:56 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2011-09-14 16:10:56 +0200 |
commit | 9c53646dc79a1447fd3201b37412108d7f94ea28 (patch) | |
tree | 479a683a77bca0f8b49c38920f0cc8c10281278a /Makefile | |
parent | 038d482b3d317e8369c11a693c485517b6646c33 (diff) | |
download | vdr-plugin-eepg-9c53646dc79a1447fd3201b37412108d7f94ea28.tar.gz vdr-plugin-eepg-9c53646dc79a1447fd3201b37412108d7f94ea28.tar.bz2 |
fix compile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |