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