[BACK]Return to GNUmakefile CVS log [TXT][DIR] Up to [Development] / inventor / doc / man / ivman

File: [Development] / inventor / doc / man / ivman / GNUmakefile (download)

Revision 1.1.1.1 (vendor branch), Tue Aug 15 12:56:12 2000 UTC (17 years, 2 months ago) by naaman
Branch: sgi
CVS Tags: start
Changes since 1.1: +0 -0 lines

Initial check-in based on 2.1.5 (SGI IRIX) source tree.

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

LDIRT = *.d
LCXXFLAGS = -D__GNU_LIBRARY__ \
	-I$(IVDEPTH)/lib/database/include \
	-I$(IVDEPTH)/lib/interaction/include \
	-I$(IVDEPTH)/lib/nodekits/include \
	-I$(IVDEPTH)/libSoXt/include 
	
CXXFILES = \
	BuildIssues.c++ \
	ClassDef.c++ \
	Main.c++ \
	Man.c++ \
	Reader.c++ \
	Writer.c++

LLDOPTS = \
	-L$(IVDEPTH)/lib \
	-L$(IVDEPTH)/libSoXt \
	-L/usr/X11R6/lib 

LLDLIBS = \
	-lInventor \
	-lInventorXt \
	-lXm -lXt -lXext -lXi \
	-lGLU -lGL

TARGETS = ivman

$(TARGETS): $(OBJECTS)
	$(CXX) $(LDOPTS) $(OBJECTS) $(LDLIBS) -o $(TARGETS)

all install: $(TARGETS)

include $(COMMONRULES)