[BACK]Return to GNUmakefile CVS log [TXT][DIR] Up to [Development] / inventor / apps / nodes / GeneralizedCylinder

File: [Development] / inventor / apps / nodes / GeneralizedCylinder / GNUmakefile (download)

Revision 1.1, Tue Aug 15 12:55:59 2000 UTC (17 years, 2 months ago) by naaman
Branch: MAIN

Initial revision

IVDEPTH = ../../..
include $(IVDEPTH)/make/commonivdefs

DEPTH = ../../..

DSO = libGeneralizedCylinder.so

C++FILES = \
	GeneralizedCylinder.c++ \
	Triangulator.c++ \
	NurbMaker.c++

LCXXFLAGS += -I$(DEPTH)/include \
	    -DLIBRARYBUILD \
	    -I../../samples/common/ \
	    -I../../../lib/database/include/ \
  	    -I../../../lib/interaction/include \
	    -I../../../lib/nodekits/include -O3 \
	    -I../../../libSoXt/include 

LLDOPTS = \
	-L../../../libimage \
	-L../../../lib \
	-L/usr/X11R6/lib \
	-L../../../libSoXt \
	-L../../../libFL/src \
	-L../../samples/common \
	-L/usr/X11R6/lib \

LLDLIBS = \
	-limage \
	-lInventorXt \
	-lInventor \
	-lcommon \
	-lXm -lXt -lXi -lX11 \
	-lFL -lGLU -lGL \
	-lXext \
	-lX11 -ldl -lm 

$(DSO) install all: $(OBJECTS)
	$(LD) -shared $(LDOPTS) $(OBJECTS) $(LIBS) -o $(DSO)

include $(COMMONRULES)