source: trunk/environments/g4py/tests/test06/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: 721 bytes
Line 
1# $Id: GNUmakefile,v 1.2 2006/04/25 07:54:29 kmura Exp $
2# ===========================================================
3#   Makefile for building Python module with Boost.Python
4#     
5# ===========================================================
6include ../../config/config.gmk
7
8# python module name
9MODULE := test06#
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
21.PHONY: all mylib cleanall
22
23all : cleanall mylib module
24
25mylib :
26        @cd $(G4PY_EXLIB_ROOT) && $(MAKE)
27
28cleanall: clean
29        @cd $(G4PY_EXLIB_ROOT) && $(MAKE) clean
30
Note: See TracBrowser for help on using the repository browser.