summaryrefslogtreecommitdiffstats
path: root/Algorithms/Part-II/2-SeamCarving/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Algorithms/Part-II/2-SeamCarving/Makefile')
-rw-r--r--Algorithms/Part-II/2-SeamCarving/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/Algorithms/Part-II/2-SeamCarving/Makefile b/Algorithms/Part-II/2-SeamCarving/Makefile
new file mode 100644
index 0000000..8a7d1c1
--- /dev/null
+++ b/Algorithms/Part-II/2-SeamCarving/Makefile
@@ -0,0 +1,28 @@
+
+CC = javac
+ALGS4 = $(HOME)/algs4
+BIN = SeamCarver
+SRCS = SeamCarver.java
+CLASSES = PrintEnergy.class PrintSeams.class ResizeDemo.class SCUtility.class ShowEnergy.class ShowSeams.class
+CLASSPATH = -classpath .:$(ALGS4)/algs4.jar:$(ALGS4)/stdlib.jar
+
+.SUFFIXES:
+.SUFFIXES: .java .class
+.PHONY: clean $(BIN)
+
+.java.class:
+ $(CC) -Xlint $(CLASSPATH) $<
+ $(ALGS4)/bin/checkstyle $<
+
+$(BIN): $(BIN).class
+
+run: $(BIN) $(CLASSES)
+ java $(CLASSPATH) PrintEnergy ./data/6x5.png
+ java $(CLASSPATH) PrintSeams ./data/6x5.png
+
+zip: $(BIN)
+ $(ALGS4)/bin/findbugs $(BIN).class
+ zip $(BIN).zip $(SRCS)
+
+clean:
+ rm -f *.class *.zip $(BIN)