File: Makefile.am

package info (click to toggle)
open-amulet 4.3.1-7.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 7,804 kB
  • ctags: 9,779
  • sloc: cpp: 97,058; sh: 7,698; ansic: 1,881; makefile: 756; lisp: 153; exp: 15
file content (48 lines) | stat: -rw-r--r-- 1,102 bytes parent folder | download
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
# We define here the default location for OpenAmulet data
# files (general images, default gestures classification, etc.)
INCLUDES = -I$(top_srcdir)/header -DDEFAULT_AMULET_DIR=\"$(pkgdatadir)\"

if BUILD_release
RELEASE = libscripting.la
else
RELEASE =
endif

if BUILD_develop
DEVELOP = libscripting-develop.la
else
DEVELOP =
endif

noinst_LTLIBRARIES = $(RELEASE) $(DEVELOP)

## The following is temptative and incorporate as much
## as possible from Amulet V4 (from CMU)
##
## Scripting

libscripting_la_SOURCES =	\
	askclickpos.cpp		\
	askforvalue.cpp		\
	askpositionandsize.cpp	\
	askpositionorsize.cpp	\
	askselectobj.cpp	\
	locgen.cpp		\
	generalizers.cpp	\
	genval.cpp		\
	invoke.cpp		\
	objgen.cpp		\
	scripting_window.cpp	\
	search_window.cpp	\
	undo_dialog_box.cpp	\
	valgen.cpp		\
	valinvokegen.cpp

LINK=$(CXXLINK) # Needed to force linking with c++

libscripting_develop_la_SOURCES = 
libscripting_develop_la_LIBADD = $(patsubst %.cpp,%-develop.lo,$(filter %.cpp,$(libscripting_la_SOURCES)))

# Don't touch these...
%-develop.lo: %.cpp
	$(LTCXXCOMPILE) @AMULET_DEVELOP_FLAGS@ -c $< -o $@