Shortened the name of the Java code generation executable.
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Fri, 2 Feb 2007 21:03:29 +0000 (21:03 +0000)
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Fri, 2 Feb 2007 21:03:29 +0000 (21:03 +0000)
git-svn-id: http://svn.complang.org/ragel/trunk@63 052ea7fc-9027-0410-9066-f65837a77df0

12 files changed:
Makefile.in
configure
configure.in
rlgen-java/Makefile.in [moved from javagen/Makefile.in with 91% similarity]
rlgen-java/fsmcodegen.cpp [moved from javagen/fsmcodegen.cpp with 100% similarity]
rlgen-java/fsmcodegen.h [moved from javagen/fsmcodegen.h with 100% similarity]
rlgen-java/javacodegen.cpp [moved from javagen/javacodegen.cpp with 100% similarity]
rlgen-java/javacodegen.h [moved from javagen/javacodegen.h with 100% similarity]
rlgen-java/javagen.h [moved from javagen/javagen.h with 100% similarity]
rlgen-java/main.cpp [moved from javagen/main.cpp with 100% similarity]
rlgen-java/tabcodegen.cpp [moved from javagen/tabcodegen.cpp with 100% similarity]
rlgen-java/tabcodegen.h [moved from javagen/tabcodegen.h with 100% similarity]

index 6f18e87..6d11f17 100644 (file)
@@ -1,5 +1,5 @@
 #
-#   Copyright 2001-2006 Adrian Thurston <thurston@cs.queensu.ca>
+#   Copyright 2001-2007 Adrian Thurston <thurston@cs.queensu.ca>
 #
 
 #   This file is part of Ragel.
@@ -19,7 +19,7 @@
 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
 
 
-BUILD_SUBDIRS = common ragel redfsm rlcodegen javagen
+BUILD_SUBDIRS = common ragel redfsm rlcodegen rlgen-java
 ALL_SUBDIRS = $(BUILD_SUBDIRS) test examples doc
 
 #*************************************
index 1173ca2..932d569 100755 (executable)
--- a/configure
+++ b/configure
@@ -2856,7 +2856,7 @@ _ACEOF
 
 fi
 
-                                                                                ac_config_files="$ac_config_files Makefile common/Makefile ragel/Makefile redfsm/Makefile rlcodegen/Makefile javagen/Makefile doc/Makefile test/Makefile"
+                                                                                ac_config_files="$ac_config_files Makefile common/Makefile ragel/Makefile redfsm/Makefile rlcodegen/Makefile rlgen-java/Makefile doc/Makefile test/Makefile"
 cat >confcache <<\_ACEOF
 # This file is a shell script that caches the results of configure
 # tests run on this system so they can be shared between configure
@@ -3386,7 +3386,7 @@ do
   "ragel/Makefile" ) CONFIG_FILES="$CONFIG_FILES ragel/Makefile" ;;
   "redfsm/Makefile" ) CONFIG_FILES="$CONFIG_FILES redfsm/Makefile" ;;
   "rlcodegen/Makefile" ) CONFIG_FILES="$CONFIG_FILES rlcodegen/Makefile" ;;
-  "javagen/Makefile" ) CONFIG_FILES="$CONFIG_FILES javagen/Makefile" ;;
+  "rlgen-java/Makefile" ) CONFIG_FILES="$CONFIG_FILES rlgen-java/Makefile" ;;
   "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
   "test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test/Makefile" ;;
   "common/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS common/config.h" ;;
index 3aaa558..1537768 100644 (file)
@@ -105,6 +105,6 @@ if test -n "$TXL"; then
 fi
 
 dnl write output files
-AC_OUTPUT(Makefile common/Makefile ragel/Makefile redfsm/Makefile rlcodegen/Makefile javagen/Makefile doc/Makefile test/Makefile)
+AC_OUTPUT(Makefile common/Makefile ragel/Makefile redfsm/Makefile rlcodegen/Makefile rlgen-java/Makefile doc/Makefile test/Makefile)
 
 echo "configuration of ragel complete"
similarity index 91%
rename from javagen/Makefile.in
rename to rlgen-java/Makefile.in
index 9c0e91c..7ac7fb9 100644 (file)
@@ -44,9 +44,9 @@ DEPS = $(CC_SRCS:%.cpp=.%.d)
 include ../version.mk
 
 # Rules.
-all: rlcodegen-java
+all: rlgen-java
 
-rlcodegen-java: $(REDFSM) $(OBJS)
+rlgen-java: $(REDFSM) $(OBJS)
        $(CXX) $(LDFLAGS) -o $@ $(OBJS) $(REDFSM) $(LIBS)
 
 %.o: %.cpp
@@ -57,10 +57,10 @@ distclean: clean
        rm -f Makefile
 
 clean:
-       rm -f tags .*.d *.o rlcodegen-java
+       rm -f tags .*.d *.o rlgen-java
 
 install: all
        install -d $(PREFIX)/bin
-       install -s rlcodegen-java $(PREFIX)/bin/rlcodegen-java
+       install -s rlgen-java $(PREFIX)/bin/rlgen-java
 
 -include $(DEPS)
similarity index 100%
rename from javagen/fsmcodegen.h
rename to rlgen-java/fsmcodegen.h
similarity index 100%
rename from javagen/javagen.h
rename to rlgen-java/javagen.h
similarity index 100%
rename from javagen/main.cpp
rename to rlgen-java/main.cpp
similarity index 100%
rename from javagen/tabcodegen.h
rename to rlgen-java/tabcodegen.h