root / JX / trunk / misc / Makefile

Revision 3, 0.6 kB (checked in by daboo, 2 years ago)

Full commit of JX-2.5.0 code

Line 
1JX_ROOT  := ..
2MAKE_DIR := ${shell pwd}
3
4include ${JX_ROOT}/include/make/jx_constants
5include ${JX_ROOT}/include/make/jx_config
6
7#
8# JX source distribution (DISTR_TAR_FILE)
9#
10
11SRC_DIRS := ${addprefix ${JX}/misc/, \
12              ${wildcard *} }
13
14.PHONY : jxsource
15jxsource: clean
16        @cd ${J_DISTR_TAR_DIR}; \
17     tar -rf ${DISTR_TAR_FILE} ${SRC_DIRS} ${JX}/lib/libXpm.*
18
19#
20# remove object files
21#
22
23.PHONY : tidy
24tidy:: clean
25
26.PHONY : clean
27clean::
28        @${foreach dir, \
29               ${filter-out ./CVS/., ${wildcard ./*/.}}, \
30               cd ${dir}; ${MAKE} clean > /dev/null; cd ${MAKE_DIR};}
31        @rm -f pcre/Makefile pcre/libtool
Note: See TracBrowser for help on using the browser.