diff options
Diffstat (limited to 'pagelib/Makefile')
-rw-r--r-- | pagelib/Makefile | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/pagelib/Makefile b/pagelib/Makefile deleted file mode 100644 index 78389da..0000000 --- a/pagelib/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -CXX ?= g++ -AR ?= ar - -CXXFLAGS ?= -O2 -Woverloaded-virtual -Wall -fPIC - -INCLUDES += -I.. -I$(VDRDIR)/include - -### The directory environment: - -VDRDIR ?= ../../../.. - -### The object files (add further files here): - -OBJS = tools.o - -### Default rules: - -.PHONY: all clean - -all: libpagelib.a - -### Implicit rules: - -%.o: %.cpp - $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< - -### Targets: - -libpagelib.a: $(OBJS) - $(AR) r $@ $^ - -clean: - @rm -f *~ *.o core* libpagelib.a |