source: trunk/icedtea-web/netx/Makefile.kmk@ 353

Last change on this file since 353 was 353, checked in by dmik, 13 years ago

icedtea: Add kBuild files.

  • Property svn:eol-style set to native
File size: 908 bytes
Line 
1## @file
2#
3
4SUB_DEPTH = ..
5include $(KBUILD_PATH)/subheader.kmk
6
7OTHERS += netx
8BLDDIRS = $(netx_0_OUTDIR)
9
10netx: | $$(call DIRDEP,$$(netx_0_OUTDIR))
11 find $(PATH_SUB_CURRENT) -name '*.java' | sort > $(netx_0_OUTDIR)/files.txt
12 $(PATH_BOOTSTRAP_JDK)/bin/javac $(IT_JAVACFLAGS) \
13 -d "$(netx_0_OUTDIR)" \
14 -sourcepath "$(PATH_SUB_CURRENT)" \
15 -bootclasspath "$(BOOTSTRAP_JDK_RUNTIME)" \
16 @$(netx_0_OUTDIR)/files.txt
17 (cd $(NETX_RESOURCE_DIR); \
18 for files in $$(find . -type f); \
19 do \
20 $(INSTALL_DATA) -D $$(files) \
21 $(netx_0_OUTDIR)/net/sourceforge/jnlp/resources/$$(files); \
22 done)
23 $(CP) -a $(PATH_SUB_CURRENT)/net/sourceforge/jnlp/runtime/pac-funcs.js \
24 $(netx_0_OUTDIR)/net/sourceforge/jnlp/runtime
25 $(CP) -a build.properties $(netx_0_OUTDIR)/net/sourceforge/jnlp/
26
27
28include $(FILE_KBUILD_SUB_FOOTER)
29
30#$(error $(_DIRS))
Note: See TracBrowser for help on using the repository browser.