Skip to content

Commit

Permalink
Moved java files to correct hierarchy
Browse files Browse the repository at this point in the history
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@244 d0cd1f9f-072b-0410-8dd7-cf729c803f20
  • Loading branch information
theraysmith committed Jun 3, 2009
1 parent c82051a commit 8131b0f
Show file tree
Hide file tree
Showing 22 changed files with 48 additions and 348 deletions.
9 changes: 2 additions & 7 deletions java/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
SUBDIRS =
SUBDIRS = com

EXTRA_DIST = \
test.lua makefile SVAbstractMenuItem.java \
SVCheckboxMenuItem.java SVEmptyMenuItem.java \
SVEvent.java SVEventHandler.java \
SVEventType.java SVImageHandler.java SVMenuBar.java \
SVMenuItem.java SVPopupMenu.java SVSubMenuItem.java SVWindow.java \
ScrollView.java
makefile
291 changes: 0 additions & 291 deletions java/Makefile.in

This file was deleted.

1 change: 1 addition & 0 deletions java/com/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SUBDIRS = google
1 change: 1 addition & 0 deletions java/com/google/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SUBDIRS = scrollview
4 changes: 4 additions & 0 deletions java/com/google/scrollview/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
SUBDIRS = events ui

EXTRA_DIST = \
ScrollView.java
File renamed without changes.
5 changes: 5 additions & 0 deletions java/com/google/scrollview/events/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
SUBDIRS =

EXTRA_DIST = \
SVEvent.java SVEventHandler.java \
SVEventType.java
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions java/com/google/scrollview/ui/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
SUBDIRS =

EXTRA_DIST = \
SVAbstractMenuItem.java \
SVCheckboxMenuItem.java SVEmptyMenuItem.java \
SVImageHandler.java SVMenuBar.java \
SVMenuItem.java SVPopupMenu.java SVSubMenuItem.java SVWindow.java
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
55 changes: 28 additions & 27 deletions java/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,34 @@ JAVAC = javac
JAR = jar

SCROLLVIEW_FILES = \
SVAbstractMenuItem.java \
SVCheckboxMenuItem.java \
SVEmptyMenuItem.java \
SVEvent.java \
SVEventHandler.java \
SVEventType.java \
SVImageHandler.java \
SVMenuBar.java \
SVMenuItem.java \
SVPopupMenu.java \
SVSubMenuItem.java \
SVWindow.java \
ScrollView.java
com/google/scrollview/ui/SVAbstractMenuItem.java \
com/google/scrollview/ui/SVCheckboxMenuItem.java \
com/google/scrollview/ui/SVEmptyMenuItem.java \
com/google/scrollview/events/SVEvent.java \
com/google/scrollview/events/SVEventHandler.java \
com/google/scrollview/events/SVEventType.java \
com/google/scrollview/ui/SVImageHandler.java \
com/google/scrollview/ui/SVMenuBar.java \
com/google/scrollview/ui/SVMenuItem.java \
com/google/scrollview/ui/SVPopupMenu.java \
com/google/scrollview/ui/SVSubMenuItem.java \
com/google/scrollview/ui/SVWindow.java \
com/google/scrollview/ScrollView.java

SCROLLVIEW_CLASSES = \
SVAbstractMenuItem.class \
SVCheckboxMenuItem.class \
SVEmptyMenuItem.class \
SVEvent.class \
SVEventHandler.class \
SVEventType.class \
SVImageHandler.class \
SVMenuBar.class \
SVMenuItem.class \
SVPopupMenu.class \
SVSubMenuItem.class \
SVWindow.class \
ScrollView.class
com/google/scrollview/ui/SVAbstractMenuItem.class \
com/google/scrollview/ui/SVCheckboxMenuItem.class \
com/google/scrollview/ui/SVEmptyMenuItem.class \
com/google/scrollview/events/SVEvent.class \
com/google/scrollview/events/SVEventHandler.class \
com/google/scrollview/events/SVEventType.class \
com/google/scrollview/ui/SVImageHandler.class \
com/google/scrollview/ui/SVMenuBar.class \
com/google/scrollview/ui/SVMenuItem.class \
com/google/scrollview/ui/SVPopupMenu.class \
com/google/scrollview/ui/SVSubMenuItem.class \
com/google/scrollview/ui/SVWindow.class \
com/google/scrollview/ScrollView.class

SCROLLVIEW_LIBS = \
piccolo-1.2.jar \
Expand All @@ -38,7 +38,8 @@ piccolox-1.2.jar
CLASSPATH = ./piccolo-1.2.jar:./piccolox-1.2.jar

ScrollView.jar : $(SCROLLVIEW_CLASSES)
$(JAR) -c -f $@ $(SCROLLVIEW_CLASSES)
$(JAR) cf $@ com/google/scrollview/*.class \
com/google/scrollview/events/*.class com/google/scrollview/ui/*.class

$(SCROLLVIEW_CLASSES) : $(SCROLLVIEW_FILES)
$(JAVAC) -encoding UTF8 -classpath $(CLASSPATH) $(SCROLLVIEW_FILES)
Expand Down
Loading

0 comments on commit 8131b0f

Please sign in to comment.