blob: 9b4eb06926be7fe0a50427f8fc6f1671b15dc32a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Place the Javadoc output in its own directory
--- RXTX.orig/Makefile.am
+++ RXTX/Makefile.am
@@ -99,7 +99,8 @@
# create the javadoc files.
docs: $(CLASSES)
- $(JAVADOC) $(javafiles)
+ mkdir javadoc
+ cd javadoc && $(JAVADOC) $(javafiles)
################ WIN32 CrossCompiling from here down #######################
|