29 lines
621 B
Makefile
29 lines
621 B
Makefile
# --------------------------------------------------------------
|
|
# $Id: GNUmakefile,v 1.8 2008/06/15 22:53:06 cirrone Exp $
|
|
# --------------------------------------------------------------
|
|
# GNUmakefile for examples module. Gabriele Cosmo, 06/04/98.
|
|
# --------------------------------------------------------------
|
|
|
|
name := XrayTel
|
|
G4TARGET := $(name)
|
|
G4EXLIB := true
|
|
|
|
ifndef G4INSTALL
|
|
G4INSTALL = ../../..
|
|
endif
|
|
|
|
G4VIS_USE = 1
|
|
|
|
include $(G4INSTALL)/config/architecture.gmk
|
|
|
|
ifdef G4ANALYSIS_USE_PLOTTER
|
|
CPPFLAGS += -DG4ANALYSIS_USE_PLOTTER
|
|
endif
|
|
|
|
|
|
.PHONY: all
|
|
all: lib bin
|
|
|
|
include $(G4INSTALL)/config/binmake.gmk
|
|
|