[BACK]Return to Makefile.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / polymake / fake

File: [local] / OpenXM / src / polymake / fake / Makefile.in (download)

Revision 1.1, Thu Jul 15 05:39:08 2004 UTC (19 years, 10 months ago) by takayama
Branch: MAIN
CVS Tags: R_1_3_1-2, RELEASE_1_3_1_13b, RELEASE_1_2_3_12, RELEASE_1_2_3, KNOPPIX_2006, HEAD, DEB_REL_1_2_3-9

1. The section on oxshell is included in the asir-contrib manual.
2. Fake polymake is introduced. It is used to debug oxshell
   and doPolymake on a machine where no polymake is installed.

# $OpenXM: OpenXM/src/polymake/fake/Makefile.in,v 1.1 2004/07/15 05:39:08 takayama Exp $
#
OpenXM_HOME=@prefix@
OpenXM_bin=${OpenXM_HOME}/bin
OpenXM_include=${OpenXM_HOME}/include
OpenXM_lib=${OpenXM_HOME}/lib
#
OpenXM_HOME_debug=../../..
OpenXM_bin_debug=${OpenXM_HOME_debug}/bin
OpenXM_include_debug=${OpenXM_HOME_debug}/include
OpenXM_lib_debug=${OpenXM_HOME_debug}/lib
#
CFLAGS= @CFLAGS@ -D_BSD_SOURCE -g 
RM=rm
CC=@CC@
LIBS=@LIBS@ -L${OpenXM_lib}
PATHFINDER=-lox_pathfinder

all : configure  link polymake
configure: Makefile

Makefile: Makefile.in
	(rm -f .configure_done ; ./make-configure)

.c.o:
	${CC}  ${CFLAGS} -I${OpenXM_include} -c  $<
polymake: fake-polymake.o
	${CC} -o polymake fake-polymake.o

link:
	./link.sh
install:
	install polymake ${OpenXM_bin}
clean:
	rm -f .*done *.o *~ ${OpenXM_bin}/polymake ${OpenXM_bin_debug}/polymake