#!/usr/bin/make -f

# Redirect Makefile calls in the object directory to the source directory

VERSION = 2
PATCHLEVEL = 6

KERNELSRC    := /lib/modules/2.6.25-1.33/source
KERNELOUTPUT := /lib/modules/2.6.25-1.33/build

MAKEFLAGS += --no-print-directory

all:
	$(MAKE) -C $(KERNELSRC) O=$(KERNELOUTPUT)

%::
	$(MAKE) -C $(KERNELSRC) O=$(KERNELOUTPUT) $@
