diff options
author | jtauber <jtauber@unknown> | 1999-11-18 07:48:59 +0000 |
---|---|---|
committer | jtauber <jtauber@unknown> | 1999-11-18 07:48:59 +0000 |
commit | abd622447e632998a8c9a5fbf40aec5e0ce73315 (patch) | |
tree | 614486de3e94e913014295b27ae5ff87d5db4a9b | |
parent | 6416c5d4855862bb6889e73850d20b6b4571b42d (diff) | |
download | xmlgraphics-fop-abd622447e632998a8c9a5fbf40aec5e0ce73315.tar.gz xmlgraphics-fop-abd622447e632998a8c9a5fbf40aec5e0ce73315.zip |
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193229 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | Makefile | 9 | ||||
-rw-r--r-- | Makefile.rules | 1 | ||||
-rw-r--r-- | STATUS | 6 |
3 files changed, 10 insertions, 6 deletions
@@ -60,8 +60,8 @@ compilegen: properties charlist fonts cd $(GENDIR) && \ ($(FIND) . -name \*.java -print > javafiletoc) && \ for javafile in `cat javafiletoc` ; do \ - echo $(JAVAC) $(JAVAC_ARGS) $$javafile ;\ - $(JAVAC) $(JAVAC_ARGS) $$javafile ;\ + echo $(JAVAC) $(GEN_JAVAC_ARGS) $$javafile ;\ + $(JAVAC) $(GEN_JAVAC_ARGS) $$javafile ;\ done $(GENDIR): @@ -95,9 +95,10 @@ distgen: ($(TAR) -cf - -T $(JARTOC) | (cd ../$(JARTEMP); $(TAR) -xf - )) distorg: + cd src && \ rm -f $(JARTOC) && \ - ($(FIND) src/org -name \*.class -print > $(JARTOC)) && \ - ($(TAR) -cf - -T $(JARTOC) | (cd $(JARTEMP); $(TAR) -xf - )) + ($(FIND) org -name \*.class -print > $(JARTOC)) && \ + ($(TAR) -cf - -T $(JARTOC) | (cd ../$(JARTEMP); $(TAR) -xf - )) $(TARGETS:%=%subs): %subs : for dir in $(SUBDIRS) ; do \ diff --git a/Makefile.rules b/Makefile.rules index c3ac5ff65..a6f87dc00 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -9,6 +9,7 @@ JAVAC = javac # following class path is for CygWin bash JAVAC_ARGS = -g:none -classpath "$(BASEDIR)/src;$(BASEDIR)/generated;$(CLASSPATH)" +GEN_JAVAC_ARGS = -g:none -classpath "../src;$(CLASSPATH)" FIND=find TAR=tar @@ -2,6 +2,8 @@ $Id$ STATUS -Transition to xml.apache.org isn't complete yet -Makefiles don't fully work +Things to do before releasing as 0.12.0: + +Make sure Makefiles work +Get images working |