22 lines
370 B
Makefile
Executable File
22 lines
370 B
Makefile
Executable File
# -------------------------------------------------------------------
|
|
# $Id: GNUmakefile,v 1.4 2006/06/01 22:25:19 sincerti Exp $
|
|
# -----------
|
|
# GNUmakefile
|
|
# -----------
|
|
|
|
name := Microbeam
|
|
|
|
G4DEBUG := 0
|
|
G4TARGET := $(name)
|
|
G4EXLIB := true
|
|
G4VERBOSE :=1
|
|
|
|
ifndef G4INSTALL
|
|
G4INSTALL = ../../..
|
|
endif
|
|
|
|
.PHONY: all
|
|
all: lib bin
|
|
|
|
include $(G4INSTALL)/config/binmake.gmk
|