source: Sophya/trunk/SophyaPI/DemoPIApp/Makefile

Last change on this file was 3436, checked in by ansari, 18 years ago

Ajout fichier description CONTENT et MAJ Makefile pour le module DemoPIApp en vue du tag V=2.1, Reza 11/12/2007

File size: 715 bytes
Line 
1# ---- Makefile for SOPHYA/DemoPIApp module ----
2# User functions and loadable modules
3include $(SOPHYABASE)/include/sophyamake.inc
4
5all : user.so exmodule.so exmoddrw.so
6
7clean :
8 rm user.so exmodule.so exmoddrw.so user.o exmodule.o exmoddrw.o
9
10user.so: user.o
11 $(CXXDLL) -o user.so user.o $(SOPHYAALLSLBLIST)
12user.o : user.cc
13 $(CXXCOMPILE) -c -o user.o user.cc
14
15exmodule.so: exmodule.o
16 $(CXXDLL) -o exmodule.so exmodule.o $(SOPHYAALLSLBLIST)
17exmodule.o : exmodule.cc
18 $(CXXCOMPILE) -c -o exmodule.o exmodule.cc
19
20exmoddrw.so: exmoddrw.o
21 $(CXXDLL) -o exmoddrw.so exmoddrw.o $(SOPHYAALLSLBLIST)
22exmoddrw.o : exmoddrw.cc
23 $(CXXCOMPILE) -c -o exmoddrw.o exmoddrw.cc
24
25
26dump :
27 echo $(SOPHYAALLSLBLIST)
28
Note: See TracBrowser for help on using the repository browser.