31 lines
686 B
Makefile
31 lines
686 B
Makefile
# $Id: GNUmakefile 110519 2018-05-28 07:53:49Z gcosmo $
|
|
# -------------------------------------------------------------
|
|
# GNUmakefile for gl2ps. Laurent Garnier, 6/2/09.
|
|
|
|
name := G4gl2ps
|
|
|
|
# For debug mode
|
|
# CPPFLAGS += -DG4DEBUG_VIS_GL2PS
|
|
|
|
ifndef G4INSTALL
|
|
G4INSTALL = ../../../..
|
|
endif
|
|
|
|
GLOBLIBS = libG4zlib.lib
|
|
|
|
include $(G4INSTALL)/config/architecture.gmk
|
|
include $(G4INSTALL)/config/G4VIS_BUILD.gmk
|
|
include $(G4INSTALL)/config/interactivity.gmk
|
|
|
|
# NO need QT, then reset QTGLAGS
|
|
QTFLAGS =
|
|
QTLIBS =
|
|
GLQTLIBS =
|
|
|
|
CPPFLAGS += -I$(G4BASE)/global/management/include
|
|
ifdef G4LIB_BUILD_ZLIB
|
|
CPPFLAGS += -I$(G4BASE)/externals/zlib/include
|
|
endif
|
|
|
|
include $(G4INSTALL)/config/common.gmk
|