Skip to content

Commit

Permalink
Merge pull request #32 from akiezun/ak_fixMake_addGitignore
Browse files Browse the repository at this point in the history
fix make java, add gitignore
  • Loading branch information
mengyao committed May 11, 2016
2 parents 474a36d + b8b56b7 commit 7d84de2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
*.*~
example_c
example_cpp
libssw.so
libsswjni.so
ssw.jar
ssw.o
ssw/Aligner.class
ssw/Alignment.class
ssw/Example.class
ssw_cpp.o
ssw_test
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $(JAVA_JAR): $(JAVA_OBJ)
jar cvfe $@ ssw.Example $^

%.class: %.java
javac $<
javac -cp ./ $<

ssw.o: ssw.c ssw.h
$(CC) -c -o $@ $< $(CFLAGS)
Expand Down

0 comments on commit 7d84de2

Please sign in to comment.