36 lines
586 B
Makefile
36 lines
586 B
Makefile
# -* Makefile *-
|
|
#
|
|
# Author : Edward AGAPOV (OCC)
|
|
# Module : NETGENPLUGIN
|
|
# Date : 10/01/2004
|
|
#
|
|
#
|
|
|
|
# source path
|
|
top_srcdir=@top_srcdir@
|
|
top_builddir=../..
|
|
srcdir=@srcdir@
|
|
VPATH=.:@srcdir@
|
|
|
|
@COMMENCE@
|
|
|
|
# .po files to transform in .qm
|
|
PO_FILES = NETGENPlugin_icons.po
|
|
|
|
LIB_SRC = \
|
|
NETGENPlugin_NETGEN_3D.cxx \
|
|
NETGENPlugin_NETGEN_3D_i.cxx \
|
|
NETGENPlugin_i.cxx
|
|
|
|
LIB_SERVER_IDL = NETGENPlugin_Algorithm.idl
|
|
|
|
# Libraries targets
|
|
LIB = libNETGENEngine.la
|
|
|
|
NETGEN_INCLUDES = @NETGEN_INCLUDES@
|
|
CPPFLAGS += $(NETGEN_INCLUDES)
|
|
CXXFLAGS += $(NETGEN_INCLUDES)
|
|
LDFLAGS += -lNETGEN
|
|
|
|
@CONCLUDE@
|