File: Makefile.am

package info (click to toggle)
littlewizard 1.2.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,436 kB
  • sloc: sh: 9,389; cpp: 7,685; xml: 420; makefile: 380; awk: 40; ansic: 38
file content (91 lines) | stat: -rw-r--r-- 1,631 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
## Process this file with automake to produce Makefile.in

INCLUDES = \
	$(PACKAGE_CFLAGS)

AM_CXXFLAGS =\
	$(xml_CFLAGS) -I../include\
	 -Wall\
	 -g

lib_LTLIBRARIES = liblanguage.la

liblanguage_la_LIBADD = \
	$(PACKAGE_LIBS)\
	$(INTLLIBS) \
	../liblw/liblw.la

liblanguage_la_SOURCES = \
	commandadd.cc\
	commandand.cc\
	commandappear.cc\
	commandbegin.cc\
	commandbehind.cc\
	commandbrace1.cc\
	commandbrace2.cc\
	commandbreak.cc\
	commandcalculate.cc\
	commandcreate.cc\
	commandconcat.cc\
	commandcontinue.cc\
	commandcontrol.cc\
	commandcontrolgo.cc\
	commanddiv.cc\
	commanddisappear.cc\
	commanddownto.cc\
	commandelse.cc\
	commandend.cc\
	commandeq.cc\
	commandfor.cc\
	commandfor2.cc\
	commandge.cc\
	commandgetposx.cc\
	commandgetposy.cc\
	commandgo.cc\
	commandgt.cc\
	commandif.cc\
	commandindex1.cc\
	commandindex2.cc\
	commandinfront.cc\
	commandle.cc\
	commandleft.cc\
	commandlength.cc\
	commandlt.cc\
	commandmod.cc\
	commandmul.cc\
	commandne.cc\
	commandnot.cc\
	commandopp.cc\
	commandor.cc\
	commandrand.cc\
	commandread.cc\
	commandrepeat.cc\
	commandright.cc\
	commandset.cc\
	commandsetspeed.cc\
	commandsetposx.cc\
	commandsetposy.cc\
	commandstep.cc\
	commandsub.cc\
	commandto.cc\
	commanduntil.cc\
	commandwhile.cc\
	variablegeneric.cc\
	variableworld.cc\
	symbols.cc\
	symbolwizard.cc\
	symbolbreakline.cc\
	symbolremark.cc

EXTRA_DIST = symbols.cc.sh\
	symbols.cc.awk\
	symbols.h.sh\
	symbols.h.awk

symbols.cc: symbols.h symbols.cc.sh symbols.cc.awk
	@SHELL@ ./symbols.cc.sh @AWK@

symbols.h: symbols.h.sh symbols.h.awk Makefile.am
	@SHELL@ ./symbols.h.sh @AWK@
	
CLEANFILES = symbols.cc symbols.h