-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
130 lines (92 loc) · 2.75 KB
/
Makefile
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
### Generated by Winemaker
SRCDIR = .
SUBDIRS =
DLLS =
EXES = ahkmingw.exe
### Common settings
CEXTRA = -mno-cygwin
CXXEXTRA = -mno-cygwin
RCEXTRA =
INCLUDE_PATH = -I. \
$(MFC_INCLUDE_PATH)
DLL_PATH =
LIBRARY_PATH =
LIBRARIES =
### ahkmingw.exe sources and settings
ahkmingw_exe_MODULE = ahkmingw.exe
ahkmingw_exe_C_SRCS =
ahkmingw_exe_CXX_SRCS = AutoHotkey.cpp \
SimpleHeap.cpp \
WinGroup.cpp \
application.cpp \
clipboard.cpp \
globaldata.cpp \
hook.cpp \
hotkey.cpp \
keyboard_mouse.cpp \
mt19937ar-cok.cpp \
os_version.cpp \
script.cpp \
script2.cpp \
script_autoit.cpp \
script_expression.cpp \
script_gui.cpp \
script_menu.cpp \
script_registry.cpp \
util.cpp \
var.cpp \
window.cpp
ahkmingw_exe_RC_SRCS = resources/AutoHotkey.rc
ahkmingw_exe_LDFLAGS = -mwindows \
-mno-cygwin
ahkmingw_exe_DLL_PATH = $(MFC_LIBRARY_PATH)
ahkmingw_exe_DLLS = odbc32 \
ole32 \
oleaut32 \
winspool \
mfc.dll
ahkmingw_exe_LIBRARY_PATH= $(MFC_LIBRARY_PATH)
ahkmingw_exe_LIBRARIES= uuid \
mfc
ahkmingw_exe_OBJS = $(ahkmingw_exe_C_SRCS:.c=.o) \
$(ahkmingw_exe_CXX_SRCS:.cpp=.o) \
$(ahkmingw_exe_RC_SRCS:.rc=.res)
### Global source lists
C_SRCS = $(ahkmingw_exe_C_SRCS)
CXX_SRCS = $(ahkmingw_exe_CXX_SRCS)
RC_SRCS = $(ahkmingw_exe_RC_SRCS)
### Tools
CC = winegcc
CXX = wineg++
RC = wrc
### Generic targets
all: $(SUBDIRS) $(DLLS:%=%.so) $(EXES:%=%.so)
### Build rules
.PHONY: all clean dummy
$(SUBDIRS): dummy
@cd $@ && $(MAKE)
# Implicit rules
.SUFFIXES: .cpp .rc .res
DEFINCL = $(INCLUDE_PATH) $(DEFINES) $(OPTIONS)
.c.o:
$(CC) -c $(CFLAGS) $(CEXTRA) $(DEFINCL) -o $@ $<
.cpp.o:
$(CXX) -c $(CXXFLAGS) $(CXXEXTRA) $(DEFINCL) -o $@ $<
.cxx.o:
$(CXX) -c $(CXXFLAGS) $(CXXEXTRA) $(DEFINCL) -o $@ $<
.rc.res:
$(RC) $(RCFLAGS) $(RCEXTRA) $(DEFINCL) -fo$@ $<
# Rules for cleaning
CLEAN_FILES = y.tab.c y.tab.h lex.yy.c core *.orig *.rej \
\\\#*\\\# *~ *% .\\\#*
clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
$(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(C_SRCS:.c=.o) $(CXX_SRCS:.cpp=.o)
$(RM) $(DLLS:%=%.so) $(EXES:%=%.so) $(EXES:%.exe=%)
$(SUBDIRS:%=%/__clean__): dummy
cd `dirname $@` && $(MAKE) clean
$(EXTRASUBDIRS:%=%/__clean__): dummy
-cd `dirname $@` && $(RM) $(CLEAN_FILES)
### Target specific build rules
DEFLIB = $(LIBRARY_PATH) $(LIBRARIES) $(DLL_PATH)
$(ahkmingw_exe_MODULE).so: $(ahkmingw_exe_OBJS)
$(CXX) $(ahkmingw_exe_LDFLAGS) -o $@ $(ahkmingw_exe_OBJS) $(ahkmingw_exe_LIBRARY_PATH) $(DEFLIB) $(ahkmingw_exe_DLLS:%=-l%) $(ahkmingw_exe_LIBRARIES:%=-l%)