[BACK]Return to GNUmakefile CVS log [TXT][DIR] Up to [Development] / inventor / apps / tools / ivperf

File: [Development] / inventor / apps / tools / ivperf / GNUmakefile (download)

Revision 1.1.1.1 (vendor branch), Tue Aug 15 12:56:00 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

DEPTH = ../..
CXXFLAGS = -I$(DEPTH)/include \
	   -I../../../lib/database/include/ \
	   -I../../../lib/interaction/include \
	   -I../../../lib/nodekits/include \
	   -I../../nodes/BarChart \
	   -I../../../libSoXt/include

TARGETS = ivperf

CXXFILES = ivperf.c++

ifeq ($OSTYPE,"Linux")
  BARLD=-Wl,-rpath,../../nodes/BarChart
else
  BARLD=-rpath ../../nodes/BarChart
endif
	
LLDOPTS = -L../../../libimage \
	-L../../../lib/ \
	-L/usr/X11R6/lib \
	-L../../nodes/BarChart \
        -L../../../libSoXt \
        -Wl,-rpath,../../../libSoXt \
	$(BARLD)

ifeq ($(usingLinux),1)
LLDOPTS += -L../../../libFL/src
endif

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

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

install: $(TARGETS)
	@mkdir -p $(IVROOT)/usr/bin
	@cp -f $(TARGETS) $(IVROOT)/usr/bin

include $(COMMONRULES)