source: sasview/src/sas/sascalc/simulation/pointsmodelpy/libpointsmodelpy/Make.mm @ 62243ae

Last change on this file since 62243ae was d85c194, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 9 years ago

Remaining modules refactored

  • Property mode set to 100644
File size: 1.5 KB
Line 
1# -*- Makefile -*-
2#
3# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4#
5#                               Michael A.G. Aivazis
6#                        California Institute of Technology
7#                        (C) 1998-2005  All Rights Reserved
8#
9# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10#
11
12include local.def
13
14PROJECT = pointsmodelpy
15PACKAGE = libpointsmodelpy
16
17PROJ_SAR = $(BLD_LIBDIR)/$(PACKAGE).$(EXT_SAR)
18PROJ_DLL = $(BLD_BINDIR)/$(PACKAGE).$(EXT_SO)
19PROJ_TMPDIR = $(BLD_TMPDIR)/$(PROJECT)/$(PACKAGE)
20PROJ_CLEAN += $(PROJ_SAR) $(PROJ_DLL)
21
22PROJ_SRCS = \
23        lores_model.cc  \
24        points_model.cc \
25        pdb_model.cc  \
26        complex_model.cc
27
28# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29# build the library
30
31all: $(PROJ_SAR) export
32
33# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
34
35ifeq (Win32, ${findstring Win32, $(PLATFORM_ID)})
36
37# build the shared object
38$(PROJ_SAR): product_dirs $(PROJ_OBJS)
39        $(CXX) $(LCXXFLAGS) -o $(PROJ_DLL) \
40        -Wl,--out-implib=$(PROJ_SAR) $(PROJ_OBJS)
41
42# export
43export:: export-headers export-libraries export-binaries
44
45else
46
47# build the shared object
48$(PROJ_SAR): product_dirs $(PROJ_OBJS)
49        $(CXX) $(LCXXFLAGS) -o $(PROJ_SAR) $(PROJ_OBJS) -L$(BLD_LIBDIR)
50
51# export
52export:: export-headers export-libraries
53
54endif
55
56EXPORT_HEADERS = \
57        lores_model.h   \
58        points_model.h  \
59        complex_model.h
60
61EXPORT_LIBS = $(PROJ_SAR)
62EXPORT_BINS = $(PROJ_DLL)
63
64
65# version
66# $Id$
67
68#
69# End of file
Note: See TracBrowser for help on using the repository browser.