Skip to content
Snippets Groups Projects
Commit 3f170544 authored by birken's avatar birken
Browse files

configuration support for covise.

TODO: mk.covise.ON has hardcoded paths. remove this in next version.

[[Imported from SVN: r4532]]
parent cc0d7ad8
No related branches found
No related tags found
No related merge requests found
# this file is for internal ug configuration. don't change it!
COVISE_TARGET = COVISE_OFF
COVISE_CFLAGS =
COVISE_LFLAGS =
# this file is for internal ug configuration. don't change it!
COVISE_TARGET = COVISE_ON
COVISE_CFLAGS = -D_COVISE
COVISE_LFLAGS = $(UGROOT)/lib/libcovise3.a $(HOME)/covise/sgi/bin/libcovise.so
# if Covise is needed, we also need C++ linkage.
UG_LINK = $(ARCH_C++)
......@@ -40,6 +40,9 @@ include $(UGROOT)/configs/mk.debug.$(DEBUG_MODE)
# include macro definitions for netgen
include $(UGROOT)/configs/mk.netgen.$(NETGEN)
# include macro definitions for covise
include $(UGROOT)/configs/mk.covise.$(COVISE)
# include macro definitions for grape
include $(UGROOT)/configs/mk.grape.$(GRAPE)
......@@ -56,7 +59,7 @@ UG_CFLAGS = -c -D_$(DIM) -D$(ARCH_TYPE) $(UGDEBUG_CFLAGS) \
$(ARCH_CFLAGS) $(PPIF_CFLAGS) $(MODEL_CFLAGS) \
$(ARCH_XINCLUDES) $(ENV_CFLAGS) \
$(RIF_CFLAGS) $(CHACO_CFLAGS) \
$(NETGEN_CFLAGS) $(GRAPE_CFLAGS) \
$(NETGEN_CFLAGS) $(COVISE_CFLAGS) $(GRAPE_CFLAGS) \
$(CAD_CFLAGS) \
-I$(UGROOT)/include
......@@ -65,7 +68,7 @@ UG_C++FLAGS = -c -D_$(DIM) -D$(ARCH_TYPE) $(UGDEBUG_CFLAGS) \
UG_LFLAGS = $(ARCH_LFLAGS) $(PPIF_LFLAGS) $(MODEL_LFLAGS) $(GRAPE_LFLAGS) \
$(ARCH_XLIBS) $(ARCH_LIBS) $(ENV_LFLAGS) $(ARCH_PLIBS) \
$(NETGEN_LFLAGS) $(CHACO_LFLAGS) $(CAD_LFLAGS)
$(NETGEN_LFLAGS) $(COVISE_LFLAGS) $(CHACO_LFLAGS) $(CAD_LFLAGS)
UG_LIB = $(UGROOT)/lib/libug$(UG_LIBSUFFIX).a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment