~ubuntu-branches/ubuntu/hardy/texmacs/hardy

« back to all changes in this revision

Viewing changes to TeXmacs/examples/plugins/dynlink/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Ralf Treinen
  • Date: 2004-04-19 20:34:00 UTC
  • Revision ID: james.westby@ubuntu.com-20040419203400-g4e34ih0315wcn8v
Tags: upstream-1.0.3-R2
ImportĀ upstreamĀ versionĀ 1.0.3-R2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
###############################################################################
 
3
# MODULE     : Make file for plugin example with dynamic links
 
4
# BY         : Joris van der Hoeven
 
5
# COPYRIGHT  : This software falls under the GNU general public license;
 
6
#              see the file 'LICENSE', which is provided with this package.
 
7
###############################################################################
 
8
 
 
9
tmsrc = @tmsrc@
 
10
CXX = g++
 
11
LD  = g++
 
12
RM  = rm -f
 
13
 
 
14
lib/libtmdynlink.so: src/dynlink.cpp
 
15
        $(CXX) -I$(tmsrc)/include -c src/dynlink.cpp -o src/dynlink.o
 
16
        $(LD) -shared -o lib/libtmdynlink.so src/dynlink.o
 
17
 
 
18
clean:
 
19
        $(RM) *~
 
20
        $(RM) */*~
 
21
        $(RM) */*.o
 
22
        $(RM) lib/*