26 lines
607 B
Makefile
26 lines
607 B
Makefile
# --------------------------------------------------------------
|
|
# GNUmakefile for graphics_reps library. John Allison, 19/7/96.
|
|
# --------------------------------------------------------------
|
|
|
|
name := G4graphics_reps
|
|
|
|
ifndef G4INSTALL
|
|
G4INSTALL = ../..
|
|
endif
|
|
|
|
GLOBLIBS = libG4intercoms.lib libG4global.lib
|
|
|
|
include $(G4INSTALL)/config/architecture.gmk
|
|
|
|
CPPFLAGS += -DG4GREPS_ALLOC_EXPORT
|
|
CPPFLAGS += -I$(G4BASE)/global/management/include
|
|
CPPFLAGS += -I$(G4BASE)/global/HEPGeometry/include
|
|
CPPFLAGS += -I$(G4BASE)/intercoms/include
|
|
|
|
include $(G4INSTALL)/config/common.gmk
|
|
|
|
.PHONY: global
|
|
|
|
global: lib
|
|
|