
HDRS = directx.h

# Succeed at the default target
all:

# I'm not allowed to distribute the Microsoft DirectX headers...
# http://www.microsoft.com/directx/developer/downloads/dxsdk.asp
distclean:
	mv include trash
	mkdir include
	(cd trash && mv $(HDRS) ../include/)
	if [ -d trash/CVS ]; then mv trash/CVS include/CVS; fi
	rm -r trash

# Copy this directory to the distribution build directory
distdir: distclean
	cp -rp . $(distdir)
