# # Makefile for Image plugin to VDR # # (C) 2004-2008 Andreas Brachold # # This code is distributed under the terms and conditions of the # GNU GENERAL PUBLIC LICENSE. See the file COPYING for details. # # You can change the compile options here or create a Make.config # in the VDR directory an set them there. # # $Id$ # VDRDIR = ../../../.. ### The C++ compiler and options: CXX ?= g++ CXXFLAGS ?= -fPIC -O2 -Wall -Woverloaded-virtual -include $(VDRDIR)/Make.config ### The directory environment: INCLUDES += -I$(VDRDIR)/include DEFINES += -D_GNU_SOURCE LIBS += ### The object files (add further files here): OBJS = pnm.o xpm.o ### Implicit rules: %.o: %.c $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: MAKEDEP = $(CXX) -MM -MG DEPFILE = .dependencies $(DEPFILE): Makefile @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ -include $(DEPFILE) ### Targets: all: libimage.a libimage.a : $(OBJS) $(AR) $(ARFLAGS) $@ $(OBJS) # $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -o $@ clean: @-rm -f $(OBJS) $(DEPFILE) *.a *.so *.tgz core* *~