~ubuntu-branches/ubuntu/intrepid/tcm/intrepid

« back to all changes in this revision

Viewing changes to src/sd/fv/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2003-07-03 20:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20030703200821-se4xtqx25e5miczi
Tags: upstream-2.20
ImportĀ upstreamĀ versionĀ 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include ../../Config.tmpl
 
2
 
 
3
PARSER = cardconstraint.tab.o\
 
4
        cardconstraint.o
 
5
 
 
6
DFOBJECTS = bidirectionaldataflow.o\
 
7
        dataflow.o\
 
8
        dataprocess.o\
 
9
        datastore.o\
 
10
        dfchecks.o\
 
11
        dfdiagram.o\
 
12
        dfedge.o\
 
13
        dfgraph.o\
 
14
        dfnode.o\
 
15
        dfprocess.o\
 
16
        dfstore.o\
 
17
        dfstubs.o\
 
18
        dfviewer.o\
 
19
        dfwindow.o\
 
20
        externalentity.o\
 
21
        splitmergenode.o
 
22
 
 
23
DCFOBJECTS = $(DFOBJECTS)\
 
24
        dcfchecks.o\
 
25
        dcfdiagram.o\
 
26
        dcfgraph.o\
 
27
        dcfstubs.o\
 
28
        dcfviewer.o\
 
29
        dcfwindow.o\
 
30
        continuousdataflow.o\
 
31
        continuouseventflow.o\
 
32
        controlprocess.o\
 
33
        eventflow.o\
 
34
        eventstore.o
 
35
 
 
36
SNOBJECTS = connectionend.o\
 
37
        connectionstart.o\
 
38
        controlleddatastream.o\
 
39
        datastream.o\
 
40
        endc1arrow.o\
 
41
        snchecks.o\
 
42
        sndiagram.o\
 
43
        sngraph.o\
 
44
        snnode.o\
 
45
        snprocess.o\
 
46
        snviewer.o\
 
47
        snwindow.o\
 
48
        statevector.o\
 
49
        startc1line.o
 
50
 
 
51
FVOBJECTS = $(DCFOBJECTS) $(SNOBJECTS)
 
52
 
 
53
tcmfv$(EXEEXTENSION):  $(FVOBJECTS) tcmfv.o
 
54
        $(PURIFY) $(CC) $(CFLAGS) $(CPPFLAGS) $(FVOBJECTS) \
 
55
        -ldiagram -leditor -lguix $(LIB_DIR)/libglobal.a \
 
56
        tcmfv.o -o $@ $(LDFLAGS) $(LDLIBS)
 
57
        $(CHMODPLUSX) $@
 
58
        $(STRIP) $@
 
59
        $(MV) $@ $(BIN_DIR)
 
60
 
 
61
libtcmfv.a: $(FVOBJECTS)
 
62
        $(AR) $@ $(FVOBJECTS)
 
63
        $(CHMODPLUSX) $@
 
64
        $(RANLIB) $@
 
65
        $(MV) $@ $(LIB_DIR)
 
66
 
 
67
tdfd$(EXEEXTENSION):   $(DFOBJECTS) dfeditor.o
 
68
        $(PURIFY) $(CC) $(CFLAGS) $(CPPFLAGS) $(DFOBJECTS) dfeditor.o -o $@ \
 
69
        $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS)
 
70
        $(CHMODPLUSX) $@
 
71
        $(STRIP) $@
 
72
        $(MV) $@ $(BIN_DIR)
 
73
 
 
74
tsnd$(EXEEXTENSION):   $(SNOBJECTS) $(PARSER) sneditor.o
 
75
        $(PURIFY) $(CC) $(CFLAGS) $(CPPFLAGS) $(SNOBJECTS) $(PARSER) sneditor.o -o $@ \
 
76
        $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS)
 
77
        $(CHMODPLUSX) $@
 
78
        $(STRIP) $@
 
79
        $(MV) $@ $(BIN_DIR)
 
80
 
 
81
tefd$(EXEEXTENSION):  $(DCFOBJECTS) dcfeditor.o
 
82
        $(PURIFY) $(CC) $(CFLAGS) $(CPPFLAGS) $(DCFOBJECTS) dcfeditor.o -o $@ \
 
83
        $(LDFLAGS) -ldiagram -leditor -lgui -lglobal $(LDLIBS)
 
84
        $(CHMODPLUSX) $@
 
85
        $(STRIP) $@
 
86
        $(MV) $@ $(BIN_DIR)
 
87
 
 
88
cardconstraint.tab.c: cardconstraint.y cardconstraint.l
 
89
        $(YACC) --debug -p cardconstraint -d cardconstraint.y
 
90
        $(LEX) -Pcardconstraint -ocardconstraint.c cardconstraint.l
 
91
cardconstraint.tab.h: cardconstraint.y cardconstraint.l
 
92
        $(YACC) --debug -p cardconstraint -d cardconstraint.y
 
93
        $(LEX) -Pcardconstraint -ocardconstraint.c cardconstraint.l
 
94
cardconstraint.c: cardconstraint.l cardconstraint.y
 
95
        $(LEX) -Pcardconstraint -ocardconstraint.c cardconstraint.l
 
96
cardconstraint.o:
 
97
        $(Cc) -c cardconstraint.c
 
98
cardconstraint.tab.o: cardconstraint.tab.h
 
99
        $(Cc) -c cardconstraint.tab.c
 
100
 
 
101
clean: xclean
 
102
 
 
103
xclean::
 
104
        $(RM) cardconstraint.c cardconstraint.tab.*
 
105
 
 
106
depend: xdepend
 
107
 
 
108
undepend: xundepend
 
109
 
 
110
# DO NOT DELETE THIS LINE -- make depend depends on it.