~ubuntu-branches/ubuntu/quantal/octave-miscellaneous/quantal

« back to all changes in this revision

Viewing changes to src/Makefile

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot, Sébastien Villemot, Rafael Laboissiere
  • Date: 2012-04-02 13:20:23 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20120402132023-t41xaso7sl5cex90
[ Sébastien Villemot ]
* Imported Upstream version 1.1.0
* debian/patches/match-cell-array.patch: remove patch (applied upstream)
* debian/patches/waitbar-rename.patch: remove patch (applied upstream)
* debian/patches/no-flexml.patch: remove obsolete patch, flex no longer used
  (Closes: #666294)
* debian/copyright: reflect upstream changes
* debian/octave-miscellaneous.docs: remove, no more docs in the package
* debian/clean: remove obsolete file
* debian/rules: remove hack for wrong permissions in upstream tarball

[ Rafael Laboissiere ]
* debian/watch: Use the SourceForge redirector

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
sinclude Makeconf
2
 
 
3
 
ifdef HAVE_LIB_TERMCAP
4
 
        TERM_LIB=-ltermcap
5
 
endif
6
 
 
7
 
TARGETS=text_waitbar.oct $(LISTEN) xmlread.oct  \
8
 
        csvexplode.oct csv2cell.oct csvconcat.oct cell2csv.oct \
9
 
        cell2cell.oct partarray.oct
10
 
 
11
 
all:    $(TARGETS)
12
 
 
13
 
text_waitbar.oct: text_waitbar.cc
14
 
        $(MKOCTFILE) $(MISCDEFS) text_waitbar.cc $(TERM_LIB)
15
 
 
16
 
server.oct: server.o listencanfork.o stringmatch.o
17
 
        $(MKOCTFILE) server.o listencanfork.o stringmatch.o
18
 
 
19
 
server.o: server.cc
20
 
        $(MKOCTFILE) -c $(MISCDEFS) server.cc
21
 
 
22
 
listencanfork.o: listencanfork.c
23
 
        $(MKOCTFILE) -c listencanfork.c
24
 
 
25
 
stringmatch.o: stringmatch.c
26
 
        $(MKOCTFILE) -c stringmatch.c
27
 
 
28
 
xmltree.o: xmltree.c xmltree.h
29
 
        $(MKOCTFILE) $(MISCDEFS) -c $<
30
 
 
31
 
xmltree_read.o: xmltree_read.c xmltree_read.h
32
 
        $(MKOCTFILE) $(MISCDEFS) -c $<
33
 
 
34
 
xmlread.o: xmlread.cc xmltree_read.h xmltree.h
35
 
        $(MKOCTFILE) $(MISCDEFS) -c $<
36
 
 
37
 
xmlread.oct: xmlread.o xmltree_read.o xmltree.o
38
 
        $(MKOCTFILE) $^
39
 
 
40
 
csvexplode.oct: csvexplode.cc
41
 
        $(MKOCTFILE) $(MISCDEFS) $<
42
 
 
43
 
csv2cell.oct: csv2cell.cc
44
 
        $(MKOCTFILE) $(MISCDEFS) $<
45
 
 
46
 
csvconcat.oct: csvconcat.cc
47
 
        $(MKOCTFILE) $(MISCDEFS) $<
48
 
 
49
 
cell2csv.oct: cell2csv.cc
50
 
        $(MKOCTFILE) $(MISCDEFS) $<
51
 
 
52
 
cell2cell.oct: cell2cell.cc
53
 
        $(MKOCTFILE) $(MISCDEFS) $<
54
 
 
55
 
partarray.oct: partarray.cc
56
 
        $(MKOCTFILE) $(MISCDEFS) $<
57
 
 
58
 
clean: ; -$(RM) *.o octave-core core *.oct *~ $(t2.1.58)
 
1
all: cell2cell.oct partarray.oct sample.oct text_waitbar.oct 
 
2
 
 
3
MKOCTFILE = mkoctfile -Wall
 
4
 
 
5
%.oct: %.cc
 
6
        $(MKOCTFILE) $<
 
7
 
 
8
clean:
 
9
        rm -f *.o octave-core core *.oct *~