- Timestamp:
- Apr 26, 2012, 10:50:04 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/icedtea-web/netx/Makefile.kmk
r353 r356 6 6 7 7 OTHERS += netx 8 BLDDIRS = $(netx_0_OUTDIR)8 BLDDIRS += $(netx_0_OUTDIR) 9 9 10 netx: | $$(call DIRDEP,$$(netx_0_OUTDIR)) 10 BUILD_PROPERTIES = $(netx_0_OUTDIR)/net/sourceforge/jnlp/build.properties 11 BLDDIRS += $(dir $(BUILD_PROPERTIES)) 12 13 OTHER_CLEAN += $(BUILD_PROPERTIES) $(netx_0_OUTDIR)/files.txt 14 15 $$(BUILD_PROPERTIES): $(PATH_ROOT)/build.properties.in | $$(call DIRDEP,$$(dir $$(@))) 16 sed "s/@RHINO_AVAILABLE@/$(if $(WITH_RHINO),true,false)/g" < $^ > $@ 17 18 netx: $$(BUILD_PROPERTIES) | $$(call DIRDEP,$$(netx_0_OUTDIR)) 11 19 find $(PATH_SUB_CURRENT) -name '*.java' | sort > $(netx_0_OUTDIR)/files.txt 20 ifndef WITH_RHINO 21 sed -i '/RhinoBasedPacEvaluator/ d' $(netx_0_OUTDIR)/files.txt 22 endif 12 23 $(PATH_BOOTSTRAP_JDK)/bin/javac $(IT_JAVACFLAGS) \ 13 24 -d "$(netx_0_OUTDIR)" \ … … 15 26 -bootclasspath "$(BOOTSTRAP_JDK_RUNTIME)" \ 16 27 @$(netx_0_OUTDIR)/files.txt 17 (cd $( NETX_RESOURCE_DIR); \18 for files in $$(find . - type f); \28 (cd $(PATH_SUB_CURRENT)/net/sourceforge/jnlp/resources; \ 29 for files in $$(find . -path ./.svn -prune -o -type f -print); \ 19 30 do \ 20 $(INSTALL_DATA) -D $$ (files)\21 $(netx_0_OUTDIR)/net/sourceforge/jnlp/resources/$$ (files); \31 $(INSTALL_DATA) -D $${files} \ 32 $(netx_0_OUTDIR)/net/sourceforge/jnlp/resources/$${files}; \ 22 33 done) 23 $(CP)-a $(PATH_SUB_CURRENT)/net/sourceforge/jnlp/runtime/pac-funcs.js \34 cp -a $(PATH_SUB_CURRENT)/net/sourceforge/jnlp/runtime/pac-funcs.js \ 24 35 $(netx_0_OUTDIR)/net/sourceforge/jnlp/runtime 25 $(CP) -a build.properties $(netx_0_OUTDIR)/net/sourceforge/jnlp/26 36 27 37 28 38 include $(FILE_KBUILD_SUB_FOOTER) 29 39 30 #$(error $(_DIRS))40 #$(error --$(PATH_OUT))
Note:
See TracChangeset
for help on using the changeset viewer.