1
0
mirror of https://github.com/balkian/slides-intro-spark.git synced 2024-11-21 11:52:28 +00:00
slides-intro-spark/Makefile
2018-10-17 13:19:01 +02:00

35 lines
650 B
Makefile

SOURCES = $(shell ls *.scala)
S = scala
SC = scalac
TARGET = target
CP = $(TARGET):scalatest.jar
SPEC = scala.RomanSpec
TEMP_DIR ?= _LATEX
all: pdf
compile: $(SOURCES)
@echo "Compiling $(SOURCES)..."
@$(SC) -cp . -d $(TARGET) $(SOURCES)
Parallel.class: $(SOURCES)
run: Parallel.class
@scala -cp $(TARGET) Parallel
test: compile
@$(S) -cp $(CP) org.scalatest.tools.Runner -p . -o -s $(SPEC)
pdf:
@mkdir -p $(TEMP_DIR)
pdflatex -output-directory ./$(TEMP_DIR) spark1.tex
pdflatex -output-directory ./$(TEMP_DIR) spark2.tex
cp $(TEMP_DIR)/*.pdf .
clean:
@$(RM) -rf $(TEMP_DIR)
@$(RM) $(TARGET)/*.class
clean-all: clean
@rm spark*.pdf