Files
geant4/environments/XVT/GNUmakefile
T
2016-06-01 15:25:35 +02:00

35 lines
758 B
Makefile

# $Id: GNUmakefile,v 2.1 1998/07/13 15:15:31 urbi Exp $
# ----------------------------------------------------------------
# Generic GNUmakefile
# Set environment variable G4TARGET.
# ----------------------------------------------------------------
# TESTTARGET is created according to G4SYSTEM. G.Cosmo, 11/6/96.
MAKEFLAGS= --no-print-directory
ifndef G4TARGET
G4TARGET := $(TESTTARGET)
endif
ifndef G4INSTALL
G4INSTALL = ../..
endif
G4EXEC_BUILD = true
include $(G4INSTALL)/config/architecture.gmk
include $(G4INSTALL)/config/G4VIS_USE.gmk
# Override some variables for binmake.gmk.
#
# INCFLAGS :=
# LDLIBS :=
include $(G4INSTALL)/config/binmake.gmk
.PHONY: clean_all_tildas
clean_all_tildas:
find $(G4BASE)/ -name '*~' -exec rm -i {} \;