#
# Copyright (c) 2017 10x Genomics, Inc. All rights reserved.
#

# BEGIN_INTERNAL - DO NOT MODIFY THIS LINE
# Everything above must be suitable for OSS release.
# Everything below will be stripped by oss-strip-makefile.

# this is a generic stub Makefile; it's currently removed 
# as no Makefile is required.  See below.

.PHONY: all

all:
	@echo dummy Makefile - use Cargo build system

oss-strip-makefile:
	sed -n '/BEGIN_INTERNAL/q;p' Makefile > Makefile.oss

oss-ready: oss-strip-makefile 
	/bin/mv Makefile.oss Makefile
	/bin/rm Makefile		# obviously remove this if we're using the Makefile
	/bin/rm -rf .git 
	/bin/rm -f  .gitmodules
	/bin/rm -f  .gitignore
	/bin/rm -f  .travis.yml
	@echo repo oss ready
