Skip to content

Commit

Permalink
Merge pull request #143 from jamesmcclain/fix/makefile
Browse files Browse the repository at this point in the history
Fix Makefile
  • Loading branch information
Jacob Bouffard committed Apr 28, 2017
2 parents ef6ac3c + 9c0c08d commit 7bfda90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ install: ${DIST-ASSEMBLY} ${WHEEL}
${DIST-ASSEMBLY}: ${BUILD-ASSEMBLY}
cp -f ${BUILD-ASSEMBLY} ${DIST-ASSEMBLY}

${BUILD-ASSEMBLY}: $(call rwildcard, geopyspark-backend/, *.jar)
${BUILD-ASSEMBLY}: $(call rwildcard, geopyspark-backend/, *.scala)
(cd geopyspark-backend && ./sbt "project geotrellis-backend" assembly)

${WHEEL}: $(call rwildcard, geopyspark, *.py) setup.py
${WHEEL}: ${DIST-ASSEMBLY} $(call rwildcard, geopyspark, *.py) setup.py
${PYTHON} setup.py bdist_wheel

pyspark: ${DIST-ASSEMBLY}
Expand Down

0 comments on commit 7bfda90

Please sign in to comment.