# Make mktree tool 

TARGET=mktree

CFLAGS=-Wall -g #-DEXPLICIT_WRITABLE

all:
	gcc -o $(TARGET) $(CFLAGS) mktree.c
clean:
	rm -f $(TARGET)
	
