
APPLNAME =	domcheck

APPLINCLS =	cplex_vars.h cpxdefs.inc

DEFS = 
#      Possibilities: -DTRACE and/or -DTRACEALL (useful for debug operations).

DEFMACH =  -DSYSSILICON
#      Possibilities: see the CPLEX manual for the appropriate machine identificator.

LIB = -lm
#     mathematical library. Example: -lm

first :	$(APPLNAME)

CPLEXDIR =	/usr/people22b/cplex
#		Specify here the path to the directory containing your CPLEX callable library.

$(APPLNAME):	domcheck.c 
		cc -O domcheck.c $(DEFMACH) $(DEFS) $(CPLEXDIR)/cplexmip.a $(LIB) -o $@
		