include $(ROOTDIR)/BaseVar.mk
.PHONY: all build clean

SRCDIR=$(CURDIR)/samba-1.9.18p8

all: build

build:
	make -C $(SRCDIR) all

clean:
	make -C $(SRCDIR) clean

install:
	make -C $(SRCDIR) install
