-
-
Notifications
You must be signed in to change notification settings - Fork 531
/
Makefile.am
77 lines (69 loc) · 1.17 KB
/
Makefile.am
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
AM_CPPFLAGS = -DYY_NO_INPUT $(SDL_CFLAGS) $(WZ_CPPFLAGS) $(QT5_CFLAGS)
AM_CFLAGS = $(WZ_CFLAGS)
AM_CXXFLAGS = $(WZ_CXXFLAGS) $(QT5_CFLAGS)
MOCHEADER = \
wzconfig.h
MOCEDFILES = $(MOCHEADER:%.h=%_moc.cpp)
%_moc.cpp: %.h
$(MOC5) -o $@ $<
CLEANFILES = \
$(MOCEDFILES)
EXTRA_DIST = \
cocoa_wrapper.h cocoa_wrapper.mm
noinst_LIBRARIES = libframework.a
noinst_HEADERS = \
$(MOCHEADER) \
config-macosx.h \
crc.h \
cursors.h \
debug.h \
endian_hack.h \
file.h \
fixedpoint.h \
frame.h \
frameresource.h \
geometry.h \
gettext.h \
i18n.h \
input.h \
lexer_input.h \
listmacs.h \
macros.h \
math_ext.h \
opengl.h \
physfs_ext.h \
rational.h \
resly.h \
resource_parser.h \
stdio_ext.h \
string_ext.h \
strres.h \
strres_parser.h \
strresly.h \
treap.h \
trig.h \
types.h \
utf.h \
vector.h \
wzapp.h \
wzglobal.h
nodist_libframework_a_SOURCES = \
wzconfig_moc.cpp
libframework_a_SOURCES = \
crc.cpp \
debug.cpp \
frame.cpp \
frameresource.cpp \
geometry.cpp \
i18n.cpp \
lexer_input.cpp \
resource_lexer.cpp \
resource_parser.cpp \
stdio_ext.cpp \
strres.cpp \
strres_lexer.cpp \
strres_parser.cpp \
treap.cpp \
trig.cpp \
utf.cpp \
wzconfig.cpp