Fixed Examples/go/director/Makefile as the copy of director.go wasn't cleaned up in separate build directories.

This commit is contained in:
Michael Schaller 2015-06-26 12:34:43 +02:00
commit 0db9a6ba7b

View file

@ -17,4 +17,7 @@ build:
SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' go_cpp
clean:
if [ -n '$(SRCDIR)' ]; then \
rm director.go; \
fi
$(MAKE) -f $(TOP)/Makefile SRCDIR='$(SRCDIR)' INTERFACE='$(INTERFACE)' go_clean