source: trunk/environments/g4py/tests/test03/GNUmakefile @ 1337

Last change on this file since 1337 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 720 bytes
Line 
1# $Id: GNUmakefile,v 1.2 2006/04/25 07:54:28 kmura Exp $
2# ===========================================================
3#   Makefile for building Python module with Boost.Python
4#     
5# ===========================================================
6include ../../config/config.gmk
7
8# python module name
9MODULE := test03#
10
11# location of exposured library
12G4PY_EXLIB_ROOT    := ./mylib
13G4PY_EXLIB_INCDIR  := $(G4PY_EXLIB_ROOT)
14G4PY_EXLIB_LIBDIR  := $(G4PY_EXLIB_ROOT)
15G4PY_EXLIB_LIBNAME := XXX
16
17COMPILE_WITH_BOOST := true
18include $(G4PY_INSTALL)/config/module.gmk
19
20.PHONY: all mylib cleanall
21
22all : cleanall mylib module
23
24mylib :
25        @cd $(G4PY_EXLIB_ROOT) && $(MAKE)
26
27cleanall: clean
28        @cd $(G4PY_EXLIB_ROOT) && $(MAKE) clean
29
Note: See TracBrowser for help on using the repository browser.