[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math / lib

File: [local] / OpenXM / src / ox_math / lib / Makefile (download)

Revision 1.1, Thu Jan 20 15:00:02 2000 UTC (24 years, 4 months ago) by ohara
Branch: MAIN
CVS Tags: maekawa-ipv6, R_1_3_1-2, RELEASE_20000124, RELEASE_1_3_1_13b, RELEASE_1_2_3_12, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, RELEASE_1_1_3, RELEASE_1_1_2, KNOPPIX_2006, HEAD, DEB_REL_1_2_3-9

I add oxclient.m

# $OpenXM: OpenXM/src/ox_math/lib/Makefile,v 1.1 2000/01/20 15:00:02 ohara Exp $

OpenXM_HOME = ../../..
LIBRARIES = oxclient.m beta.m primadec.m

all:

install: install-binary

install-binary: ${LIBRARIES}
	-mkdir -p ${OpenXM_HOME}/lib/math
	cp -f ${LIBRARIES} ${OpenXM_HOME}/lib/math

install-for-debug: ${LIBRARIES}
	-mkdir -p ${OpenXM_HOME}/lib/math
	for i in ${LIBRARIES}; do \
		ln -s -f ../../src/ox_math/lib/$$i ${OpenXM_HOME}/lib/math; \
	done

clean-for-debug:
	-for i in ${OpenXM_HOME}/lib/math/*; do \
		test -L $$i && rm -f $$i; \
	done

clean:
	-rm -f *~