|
Revision 3, 0.6 kB
(checked in by daboo, 2 years ago)
|
|
Full commit of JX-2.5.0 code
|
| Line | |
|---|
| 1 | JX_ROOT := .. |
|---|
| 2 | MAKE_DIR := ${shell pwd} |
|---|
| 3 | |
|---|
| 4 | include ${JX_ROOT}/include/make/jx_constants |
|---|
| 5 | include ${JX_ROOT}/include/make/jx_config |
|---|
| 6 | |
|---|
| 7 | # |
|---|
| 8 | # JX source distribution (DISTR_TAR_FILE) |
|---|
| 9 | # |
|---|
| 10 | |
|---|
| 11 | SRC_DIRS := ${addprefix ${JX}/misc/, \ |
|---|
| 12 | ${wildcard *} } |
|---|
| 13 | |
|---|
| 14 | .PHONY : jxsource |
|---|
| 15 | jxsource: 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 |
|---|
| 24 | tidy:: clean |
|---|
| 25 | |
|---|
| 26 | .PHONY : clean |
|---|
| 27 | clean:: |
|---|
| 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 |
|---|